Parse SDK methods not working in Xcode 6.3 Beta

前端 未结 5 1786
夕颜
夕颜 2021-01-12 13:39

So far I am having issues with blocks like this:

user.signUpInBackgroundWithBlock {
        (succeeded: Bool!, error: NSError!) -> Void in
        if erro         


        
5条回答
  •  既然无缘
    2021-01-12 14:14

    Change:

    (succeeded: Bool!, error: NSError!) -> Void in
    

    to

    (succeeded, error) -> Void in
    

    This change is required due to changes in the Parse SDK

提交回复
热议问题