这是我的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文本颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)