Как установить AttributedText в UIAlertAction в Swift?

Как отобразить параметр с UIAlertAction, когда в тексте есть теги Html (например, SpO2)? Для метки мы используем атрибутивный текст. Как мы можем установить атрибутивный текст для UIAlertAction.

1 ответ

Это может помочь,

let attributedString = NSAttributedString(string: "My Message",
                                                  attributes: [NSFontAttributeName : UIFont.systemFont(ofSize: 21, weight: 5)])

        let alert = UIAlertController(title: "Title", message: "", preferredStyle: .alert)

        alert.setValue(attributedString, forKey: "attributedMessage")

        let cancelAction = UIAlertAction(title: "OK", style: .default, handler: nil)

        alert.addAction(cancelAction)

        present(alert, animated: true, completion: nil)

Добавьте атрибуты, что вы хотите

Другие вопросы по тегам