我想弄清楚如何在 UIActionSheet 中的按钮右侧添加复选标记。
有没有安全的方法可以在 UIActionSheet 的按钮中添加此复选标记?
有没有更简单的方法可以在不使用私有(private) api 的情况下在 UIActionsheet 的按钮中添加复选标记?

最佳答案

从 iOS 8.0 开始,您可以使用 UIAlertController 。在 UIAlertController 中,每个按钮项都被称为 UIAlertAction,它们会相应地添加。 UIAlertAction 包含一个名为 image 的运行时属性,您可以根据需要进行设置。

 UIAlertAction *SwipeView =[UIAlertAction actionWithTitle:@"Swipe View" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {


}];
[SwipeView setValue:[UIImage imageNamed:@"tick_mark" ] forKey:@"_image"];

关于ios - 如何在 UIActionsheet 的按钮上添加复选标记,我可以在其中创建刻度标签?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26927645/

10-12 04:52