我将 Xcode 更新到 6.3,发现新的 Swift 1.2 在我的代码中有一些新错误。
user.signUpInBackgroundWithBlock {
(success:Bool!, error:NSError!) -> Void in
if !(error != nil) {
println("sign up successfully")
var loginAlert: UIAlertController = UIAlertController(title: "Sign Up", message: "Sign Up Succeeded", preferredStyle: UIAlertControllerStyle.Alert)
self.presentViewController(loginAlert, animated: true, completion: nil)
loginAlert.addAction(UIAlertAction(title: "Okay", style:
我收到了这个错误:
无法使用类型为 ((Bool!, NSError!) -> void) 的参数列表调用 signUpInBackgroundWithBlock
我该如何解决?
另一个
@IBAction func endend(sender: AnyObject) {
if (PFUser.currentUser() == nil) {
PFUser.logInWithUsernameInBackground(usernameTextField.text, password: passwordTextField.text){
(user:PFUser!, error:NSError!) -> Void in
if user != nil {
println("login chenggong")
var tlvc = TimelineViewControllerTableViewController()
self.presentViewController(tlvc, animated: true, completion: nil)
}
else {
println("failed")
}
}
}
}
我收到了这个错误:
“UITextField”没有名为“text”的成员。
我有 3 个错误}
,它说
预期的“,”分隔符。
表达式列表中的预期表达式。
表达式中应有“)”。
我可以在 Swift 1.2 之前运行我的应用程序,但现在......