I am using facebook latest iphone sdk, I am making multiple request to facebook from different places in my app. For all of them didReceiveResponse and didLoad methods get called, it is very difficult to find out from didLoad method that for what request this response was so I am wondering if didReceiveResponse can help, can i retrieve some information in this method which will tell me what was the request for which I have got the response.
|
feedback
|
|
The way I do it is pretty much the same way Ziminji does it, but in didLoad method:
So basically you need only to check the url you sent the request to, and you can also check the parameters for that request. Then you can differentiate one from another. | |||
|
feedback
|
|
All I am doing here is I am checking for some unique attribute in the response and relating it to the request, I know this is not the best way to do is, but this is what I have found so far, please let me know if any one is doing it any different | |||
|
feedback
|
|
You could try something like the following:
| |||
|
feedback
|
|
If you retain the request object as a property of your request delegate when you create it, you can check to see if it matches on the delegate method calls. For example:
| ||||
|
feedback
|