-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Description
Hey, @egmoll7 first of all nice work! I am experimenting with EMAlertController right now and found few issues with it.
cornerRadius will not work if I set actionBackgroundColor on actions.
Sample Code:
let alertController = EMAlertController.init(title: "My App", message: "Are you really want to approve?")
alertController.backgroundViewColor = UIColor.clear
alertController.backgroundColor = UIColor.white
alertController.iconImage = #imageLiteral(resourceName: "someImage")
alertController.cornerRadius = 25.0
let alertActionYes = EMAlertAction.init(title: "Yes", style: .normal) {
print("Yes")
}
let alertActionCancel = EMAlertAction.init(title: "Cancel", style: .cancel) {
print("Cancel")
}
alertActionYes.actionBackgroundColor = UIColor.red
alertActionCancel.actionBackgroundColor = UIColor.red
alertController.addAction(action: alertActionYes)
alertController.addAction(action: alertActionCancel)
self.present(alertController, animated: true, completion: nil)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels