PFUser的Bool值的意义signUpInBackgroundWithBlock

时间:2015-05-28 01:22:38

标签: ios parse-platform pfobject pfuser

我想知道功能块中成功 Bool值的重要性是什么?正如我所见,来自parse的示例代码忽略了它,只检查错误是否为nil。

如果不需要bool值,为什么它首先出现?

        user.signUpInBackgroundWithBlock({ (succeeded: Bool, error: NSError?) -> Void in
            if error == nil {
                if succeeded { // IS THIS REQUIRED AT ALL??
                }
            }
            else {
            }
        });

或者我们可以这样做?

        user.signUpInBackgroundWithBlock({ (succeeded: Bool, error: NSError?) -> Void in
            if error == nil {
                //Do something
            }
            else {
            }
        });

0 个答案:

没有答案