我正在Swift中构建我的第一个游戏,我很难调试这个错误。
GameProject [10937:162535] - [UILabel longLongValue]:无法识别 选择器发送到实例0x7ee09169eec0
当我点击" saveScore" UIButton在我的游戏中,所期望的效果是启动了一个高分ViewController的segue。
相反,不会发生segue。该应用程序没有"崩溃"或者,调试器提供上述输出。
我已经检查并排除了以下内容:
注释掉self.performSegueWithIdentifier
会消除调试器输出
@IBAction func saveScore(sender: AnyObject) {
saveScore.saveInBackgroundWithBlock {
(success, error) -> Void in
if (success){
self.performSegueWithIdentifier("showHighScore", sender: self)
}
else {
println("** Score Save Error **")
}}}
我不在其他领域进行调试探索。