How can I create a new file containing just it's own delegate so that I can make an ASIHTTPRequest with its own asynchronous ending, and something easy enough where I just need to set [request setDelegate:self];
to something like [request setDelegate:AlternateDelegate];
and just add an include at the begining of the document to reference the AlternateDelegate delegate
views:
57answers:
1
A:
A delegate for ASIHTTPRequest is just a standard objective C object. Just create a new class, include it's header, create/get the object and set the delegate to be that object.
Have you tried this and run into a problem? If so what is the problem?
JosephH
2010-08-20 09:56:52