我试图找出如何在UIActionSheet中的按钮右侧添加复选标记。 有没有一种安全的方法可以在UIActionSheet的Button中添加这个复选标记? 有没有更简单的方法在UIActionsheet的按钮中添加复选标记而不使用Of Private api?
答案 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"];