I am an iOS newbie. I want to specify a success callback for an Http execution. However, that is in another class. How would I specify it? I tried the following -
[request setDidFinishSelector: @selector([[MyHttpCallbacks get] successHttpMethod]:)];
The callback functions are defined in the MyHttpCallbacks. This does not work. If I define the methods in the same class and use it like this it works fine -
[request setDidFinishSelector: @selector(successHttpMethod:)];
Any help would be appreciated.