gpt4 book ai didi

xcode - Xcode 6 beta 6 中无法引用本地函数错误

转载 作者:行者123 更新时间:2023-11-30 10:22:11 24 4
gpt4 key购买 nike

我刚刚从 beta 4 更新到 Xcode 6 beta 6,但收到了一个我不明白的错误。

我收到错误“无法从另一个本地函数引用本地函数”。

        var alert = UIAlertController(title: "Start Over", message: "Are you sure you want to start over? This will erase your budget and all transactions.", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "I'm sure!", style: UIAlertActionStyle.Default, handler:{ (ACTION :UIAlertAction!)in
resetView()
}))
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))

self.presentViewController(alert, animated: true, completion: nil)

错误出现在代码的resetView()行上。

最佳答案

另一个解决方案是使 resetView 成为本地闭包变量而不是本地函数。这样您就不必将其移出当前所在的范围。

关于xcode - Xcode 6 beta 6 中无法引用本地函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25474436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com