ios – 解析SDK方法不适用于Xcode 6.3 Beta

前端之家收集整理的这篇文章主要介绍了ios – 解析SDK方法不适用于Xcode 6.3 Beta前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
到目前为止,我遇到了像这样的块的问题:
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但我只是无法正确访问错误,如果收到错误.

解决方法

确保您使用的是SDK版本1.7.1,然后从闭包中删除类型应该可以解决问题:
user.signUpInBackgroundWithBlock { (succeeded,error) -> Void in
    if error == nil {
        println("success")
    } else {
        println("\(error)");
        // Show the errorString somewhere and let the user try again.
    }
}
原文链接:https://www.f2er.com/iOS/332825.html

猜你在找的iOS相关文章