I am using MGTwitterEngine in an iPhone application to make a simple call for user statuses. The engine has a delegate method:
- (void)statusesReceived:(NSArray *)statuses forRequest:(NSString *)identifier
And I can see my statuses logged in the console. My question is what is the best way to then use the statuses and be informed when they have been received?
I suspect this might be more about how to use the delegate pattern properly.
Thanks,