我已经发布了问题如何使用 Bolts 框架 [Facebook+Parse]但现在我有一个问题,如果我想使用 Bolts 框架,我必须使用解析网络服务吗?
saveAsync:
他们提供了与Parse webservice相关的示例代码,如下所示。但我 "Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account"
在Boltss 的 github中看到了这一行
[[object saveAsync:obj] continueWithBlock:^id(BFTask *task) {
if (task.isCancelled) {
// the save was cancelled.
} else if (task.error) {
// the save failed.
} else {
// the object was saved successfully.
SaveResult *saveResult = task.result;
}
return nil;
}];
现在我很困惑,Is bolts framework need to use parse webservice?
注意:不要问你想在哪里使用 Bolts-framework。看我这个问题的第一行。