如何在UIActionsheet的按钮上添加复选标记,我可以在iphone中创建刻度标签?

时间:2014-11-14 10:17:44

标签: ios iphone uiactionsheet

我试图找出如何在UIActionSheet中的按钮右侧添加复选标记。 有没有一种安全的方法可以在UIActionSheet的Button中添加这个复选标记? 有没有更简单的方法在UIActionsheet的按钮中添加复选标记而不使用Of Private api?

1 个答案:

答案 0 :(得分:0)

从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"];