gpt4 book ai didi

ios - 如何更改 UIAlertController 的背景颜色?

转载 作者:IT王子 更新时间:2023-10-29 07:49:27 30 4
gpt4 key购买 nike

由于 iOS 8 中 UIActionSheet 的奇怪行为,我已经实现了 UIAlertController 和 UIAction 作为其中的按钮。我想更改 UIAlertController 的整个背景。但我找不到任何方法。

甚至尝试过,

actionController.view.backgroundColor = [UIColor blackColor];

但没有帮助我。在这方面的任何意见都将是可观的。

提前致谢。

最佳答案

你必须深入一些观点:

let subview = actionController.view.subviews.first! as UIView
let alertContentView = subview.subviews.first! as UIView
alertContentView.backgroundColor = UIColor.blackColor()

也许你想保留原来的圆角半径:

 alertContentView.layer.cornerRadius = 5;

抱歉 “快速” 但我不熟悉 Objective-C。我希望这是相似的。

当然改变 Action 的标题颜色也很重要。不幸的是,我不知道如何分别设置 Action 的颜色。但这是如何更改所有按钮文本颜色的:

actionController.view.tintColor = UIColor.whiteColor();

编辑:

UIAlertController 的圆角半径自此答案发布后发生了变化!替换为:

 alertContentView.layer.cornerRadius = 5;

对此:

 actionContentView.layer.cornerRadius = 15

关于ios - 如何更改 UIAlertController 的背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26863460/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com