Let's imagine I have a method: -[myClass getDataForUser:user] and when it is done it calls a delegate's method gotData: and the results appear on my main class. If I do two calls to getDataForUser:, for example:
[myClass getDataForUser:@"user1"];
[myClass getDataForUser:@"user2"];
how can I differentiate between these two calls in the delegate method?
EDIT:
The library is MGTwitterEngine, the two calls I make are -[_engine getDirectMessagesSinceID:1 startingAtPage:1]; and [_engine getSentDirectMessagesSinceID:1 startingAtPage:1]; and the delegate method is directMessagesReceived:forRequest: