UIActionSheet checkmark

人盡茶涼 提交于 2019-12-07 12:16:07

问题


I need to mark selected button in UIActionSheet.

How can I add checkmark in UIActionSheet button?

Is there some way specific for UIActionSheet, without standard adding image inside button.


回答1:


otherButtonTitles:@"√ 1", @"  2", 



回答2:


Starting from iOS 8.0 you can use UIAlertController. In UIAlertController, each button item is know as UIAlertAction which add accordingly. UIAlertAction contains a runtime property called image which you can set as per your need.

UIAlertActioin *action1 = [UIAlertAction actionWithTitle:@"1" style: UIAlertActionStyleDefault handler:(void (^)(UIAlertAction *action)) {
    [action setValue:[UIImage imageNamed:@"your-image-name"] forKey:@"_image"];
}];


来源:https://stackoverflow.com/questions/26996781/uiactionsheet-checkmark

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!