OStack程序员社区-中国程序员成长平台

标题: ios - UIAlertController的外观 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:19
标题: ios - UIAlertController的外观

我想在应用程序中使用外观设置我的 AlertController 的外观。 它适用于背景和按钮,但无论我尝试什么,标题和消息的标签总是保持黑色。

这是我正在做的事情:

UIView.appearance(whenContainedInInstancesOf: [UIAlertController.self]).tintColor = .orange
UIVisualEffectView.appearance(whenContainedInInstancesOf: [UIAlertController.self]).effect = UIBlurEffect(style: .dark)
UILabel.appearance(whenContainedInInstancesOf: [UIAlertController.self]).textColor = .white

这是我得到的结果:

enter image description here

任何想法,我如何设置标题和消息的颜色,或者为什么在这种情况下更改 UILabel 的外观不起作用?



Best Answer-推荐答案


最简单的方法是:不要。

您绝对没有必要局限于使用 UIAlertController 及其简单的默认 View 外观和内容。毕竟,它只不过是一个呈现的 View Controller 。这意味着可以编写自己的呈现 View Controller ,该 Controller 的外观和行为几乎类似于 UIAlertController 及其 View ,但现在您完全负责其内容!

编写自己的类似于警报的呈现 View Controller 比尝试侵入 UIAlertController 的 View 更好、更容易、更可靠;前者是完全合法的,而后者除了不可靠之外,还会让你的应用被禁止进入 App Store。

关于ios - UIAlertController的外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53770631/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4