How to use Bolts Framework[Facebook+Parse]という質問を既に投稿しましたが、Bolts-framework を使用する場合、解析 Web サービスを使用する必要がありますか?
彼らは以下のようなサンプル コードを提供しますsaveAsync:
。しかし、私はBoltssのgithubでこの行を見てき "Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account"
ました
[[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 を使用したいか尋ねないでください。この質問の最初の行を参照してください。