没有UIAlertAction的初始化程序(标题,样式,处理程序)

时间:2015-10-04 12:37:39

标签: ios swift uikit uialertcontroller uialertaction

亲爱的Stackoverflowers,

Swift / UIKit的任何专家能否在下面的截图中看到我做错了什么?

Xcode似乎无法根据标题,样式和处理程序找到UIAlertAction的便利初始化程序,而且我不知道有任何其他方法来初始化UIAlertAction。在实践中,处理程序不会是零。

提前谢谢你,

杰米

enter image description here

1 个答案:

答案 0 :(得分:1)

您正试图将Int传递给style param,这违反了快速规则。试试这个:

let saveAction = UIAlertAction(title: "Save", style: UIAlertActionStyle.Default, handler: nil)