到目前为止,我遇到了像这样的块的问题:
user.signUpInBackgroundWithBlock { (succeeded: Bool!,error: NSError!) -> Void in if error == nil { println("success") } else { println("\(error)"); // Show the errorString somewhere and let the user try again. } }
当我将其添加到Xcode中时,我得到了这个:
Cannot invoke 'signUpInBackgroundWithBlock' with an argument list of type '((Bool!,NSError!) -> Void)'
当我在Xcode 6.3(非beta)中运行此代码时,它工作正常.但在测试版中它失败了,不允许我构建.任何想法,如果这将被清除或如果有我可以使用的不同实现.香港专业教育学院尝试使用signUpInBackgroundWithTarget但我只是无法正确访问错误,如果收到错误.