How to create a batchquery in google drive sdk using objective c? I have already created single queries, and I wonder how to get responses from batchquery as well. Thanks!
问问题
94 次
1 回答
1
Create a GTLBatchQuery object and add queries to it, then execute the batch query. A GTLBatchResult is passed to the callback. Individual queries can have their own completion handler blocks as well.
There is an example batch request in the docs here.
于 2014-08-27T02:58:05.663 回答