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 set the appropriate selectors which should be called at request creation:
[request setDelegate: self]; [request setDidFailSelector: @selector(apiCallDidFail:)]; [request setDidFinishSelector: @selector(apiCallDidFinish:)];
Just set different selectors for different calls