gpt4 book ai didi

ios - 具有不同颜色按钮文本的 UIAlertAction

转载 作者:可可西里 更新时间:2023-10-31 23:51:50 25 4
gpt4 key购买 nike

我正在尝试创建一个 UIAlertAction,第一个按钮的文本为黑色,第二个按钮的文本为蓝色。如果我改变色调然后全部变黑但没有它我无法将第一个按钮更改为黑色。下面是我的代码:

let alert = UIAlertController(title: "", message: "", preferredStyle: .actionSheet)
// alert.view.tintColor = UIColor.black

alert.addAction(UIAlertAction(title: "First", style: .cancel, handler: nil))

alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))

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

最佳答案

我可以通过添加这种颜色或每种颜色来做到这一点

let cancelAlert = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.default, handler:nil)
cancelAlert.setValue(UIColor.blue, forKey: "titleTextColor")
alert.addAction(cancelAlert)

关于ios - 具有不同颜色按钮文本的 UIAlertAction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42793471/

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