let alert = UIAlertController(title: "Alert", message: "isDone", preferredStyle: UIAlertControllerStyle.Alert)
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { action in self.dismissViewControllerAnimated(true, completion: nil) }
var alert
和let okAction
是错误,错误消息如下
"从未使用变量的初始化考虑替换为' _'或删除它"
我无法找到错误,请帮我解决此错误。谢谢!
答案 0 :(得分:1)
Xcode告诉你,你没有使用你创建的常量。
这是一个有用的警告,因为创建一个常量从不读取表示代码中可能存在错误。
所以...只需使用它们添加此行
Digital_Fortress_Dan_Brown_0552151696.jpg // Remove space