How to change UIAlertAction font?

247 Views Asked by At

is there a way to change UIAlertAction font, since I only found how to change font only in title and message of the UIAlertController. I also found how to change the colour, but I just can't found a way how to change the font.

1

There are 1 best solutions below

4
On
let titleAttributed = NSMutableAttributedString(
        string: Constant.Strings.cancelAbsence, 
        attributes: [NSAttributedStringKey.font:UIFont(name:"FONT_NAME",size: FONT_SIZE)]
)

let messageAttributed = NSMutableAttributedString(
        string: Constant.Strings.cancelAbsence, 
        attributes: [NSAttributedStringKey.font:UIFont(name:"FONT_NAME",size: FONT_SIZE)]
)

let alertController = UIAlertController(
    title: "",
    message: "",
    preferredStyle: UIAlertControllerStyle.YOUR_STYLE
)

alertController.setValue(titleAttributed, forKey : "attributedTitle")
alertController.setValue(messageAttributed, forKey : "attributedMessage")
present(alertController, animated: true, completion: nil)