swift – 如何在UIAlertController中更改一个UIAlertAction文本颜色

swift – 如何在UIAlertController中更改一个UIAlertAction文本颜色,第1张

概述如何在UIAlertController中更改一个UIAlertAction的文本颜色,而不是所有 *** 作按钮. 这是我的UIAlertController代码:我想将Delete UIAlertAction文本颜色更改为红色. //Alert to select more methodfunc moreAlert(){ let optionMenu = UIAler 如何在UIAlertController中更改一个UIAlertAction的文本颜色,而不是所有 *** 作按钮.

这是我的UIAlertController代码:我想将Delete UIAlertAction文本颜色更改为红色.

//Alert to select more methodfunc moreAlert(){               let optionMenu = UIAlertController(Title: "Mere",message: "",preferredStyle: UIAlertControllerStyle.ActionSheet)    let Edit = UIAlertAction(Title: "Rediger",style: .Default,handler: { action in    })    let Delete = UIAlertAction(Title: "Slet",handler: { action in    })    let cancelAction = UIAlertAction(Title: "Annullere",style: .Cancel,handler: { action in                print("Cancelled")    })    optionMenu.addAction(Edit)                optionMenu.addAction(Delete)                optionMenu.addAction(cancelAction)    self.presentVIEwController(optionMenu,animated: true,completion: nil)}
解决方法 在Delete UIAlertAction的初始值设定项中使用参数样式:.destructive 总结

以上是内存溢出为你收集整理的swift – 如何在UIAlertController中更改一个UIAlertAction文本颜色全部内容,希望文章能够帮你解决swift – 如何在UIAlertController中更改一个UIAlertAction文本颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1004555.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存