我想知道功能块中成功 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 {
}
});