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.
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.
Starting from iOS 8.0 you can use
UIAlertController
. InUIAlertController
, each button item is know asUIAlertAction
which add accordingly.UIAlertAction
contains a runtime property called image which you can set as per your need.