作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
iOS7 引入了通用的 tint-color。我认为 UIAlertView
也在有效范围内,但实际上 tintColor 看起来不适用于 UIAlertView
. (用于可点击的按钮文本颜色)
是否可以更改警报 View 的色调?如果可能,如何改变它?
最佳答案
不幸的是,您无法自定义警报 View 的外观,也无法更改按钮文本颜色。
UIAlertView Class Reference中明确提到:
The UIAlertView class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private and must not be modified.
UIAlertView
已弃用,用于
UIAlertController
您可以简单地更改 View 色调颜色:
let alert = UIAlertController(title: "Gimme a break",
message: "For God sake its iOS7 question!",
preferredStyle: .alert)
alert.view.tintColor = UIColor.red
关于ios7 - 如何在 iOS7 中更改 UIAlertView 的按钮文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19193367/
我是一名优秀的程序员,十分优秀!