HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 如何添加UIActionSheet按钮复选标记?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何在actionSheet按钮右侧添加复选标记最简单的方法
Bellow是podcasts应用程序的屏幕截图.

解决方法

最后我通过使用UIAlertController得到了答案:
UIAlertController *customActionSheet = [UIAlertController alertControllerWithtitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction *firstButton = [UIAlertAction actionWithtitle:@"First Button" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
    //click action
}];
[firstButton SETVALue:[UIColor blackColor] forKey:@"titleTextColor"];
[firstButton SETVALue:[UIColor blackColor] forKey:@"imageTintColor"];
[firstButton SETVALue:@true forKey:@"checked"];

UIAlertAction *secondButton = [UIAlertAction actionWithtitle:@"Second Button" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
    //click action
}];
[secondButton SETVALue:[UIColor blackColor] forKey:@"titleTextColor"];

UIAlertAction *cancelButton = [UIAlertAction actionWithtitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action){
    //cancel
}];
[cancelButton SETVALue:[UIColor blackColor] forKey:@"titleTextColor"];

[customActionSheet addAction:firstButton];
[customActionSheet addAction:secondButton];
[customActionSheet addAction:cancelButton];

[self presentViewController:customActionSheet animated:YES completion:nil];

这就是结果:

大佬总结

以上是大佬教程为你收集整理的ios – 如何添加UIActionSheet按钮复选标记?全部内容,希望文章能够帮你解决ios – 如何添加UIActionSheet按钮复选标记?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。