xCode 7:如何修复变量的初始化从未使用考虑替换为' _'或删除它

时间:2016-02-14 10:47:43

标签: xcode swift

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 alertlet okAction是错误,错误消息如下 "从未使用变量的初始化考虑替换为' _'或删除它"

我无法找到错误,请帮我解决此错误。谢谢!

1 个答案:

答案 0 :(得分:1)

Xcode告诉你,你没有使用你创建的常量。

这是一个有用的警告,因为创建一个常量从不读取表示代码中可能存在错误。

所以...只需使用它们添加此行

Digital_Fortress_Dan_Brown_0552151696.jpg // Remove space