Iam writing an iPhone application which is posting a few queries to facebook via the graph-api. My problem is that I want to handle results from different FQL queries in the same “- (void)request:(FBRequest *)request didLoad:(id)result” but I havent found a way identify which query the response is for.
Can I tag my request with an ID or something to identify it in the response?
Iam writing an iPhone application which is posting a few queries to facebook via
Share
requestWithGraphPathreturns the request object, save it and then in the delegate methodrequest:didLoaduse it to differenciate your requests. The methodrequest:didLoadis passing you the request as a parameter.