我正在使用来自 parse.com 的最新解析代码 user.signupInBackgroundWithBlock
user.signUpInBackgroundWithBlock {
(succeeded: Bool?, error: NSError?) -> Void in
if let error = error {
let errorString = error.userInfo?["error"] as? NSString
self.showAlertWithText(message: "\(error)")
} else {
self.performSegueWithIdentifier("createNewUserAndGoToDashboard", sender: self)
}
我刚刚升级到 x-code 6.3.1,它不再工作了。这是直接从 Parse.com 复制的,但在 user.signUp 行上出现错误:
1.0/SIgnUpViewController.swift:48:46:函数签名'(Bool?, NSError?) -> Void'
与预期类型不兼容
'@objc_block (Bool, NSError!) -> Void'
有小费吗?