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

ios – 解析SDK方法不适用于Xcode 6.3 Beta,第1张

概述到目前为止,我遇到了像这样的块的问题: user.signUpInBackgroundWithBlock { (succeeded: Bool!, error: NSError!) -> Void in if error == nil { println("success") } else { prin 到目前为止,我遇到了像这样的块的问题:
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.    }}
总结

以上是内存溢出为你收集整理的ios – 解析SDK方法不适用于Xcode 6.3 Beta全部内容,希望文章能够帮你解决ios – 解析SDK方法不适用于Xcode 6.3 Beta所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1102114.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存