I currently have a view controller that implements ASIHTTP for handling API calls.
My view controller fires 2 separate calls. I need to be able to distinguish between t
You can inspect the request parameter passed to your requestFinished:(ASIHTTPRequest *)request method to differentiate between the two calls.
request
requestFinished:(ASIHTTPRequest *)request
For example, if the two calls have different URLs, you can inspect the request.url property to differentiate between the two requests.
request.url