I’ve seen the usage of ‘TTURLRequest’ and ‘requestDidFinishLoad’ for creating DataSource, but how can I use FBconnect ‘request:(FBRequest *)request didLoad:(id)result’?
It won’t work like TTURLRequest – won’t wait for the dataSource to load and I can’t call ‘requestDidFinishLoad’ at the end of the method because it hasn’t a ‘TTURLRequest’ object with it’s data…
Can I do that someway?
Thanks!
i managed to do this and it worked out well.
in my TTTableViewDataSource subclass method load:more: i did this to invoke modelDidStartLoad: before initiating the request
and the facebook delegate methods request:didLoad: & request:didFailWithError: similarly do, either after successfully reading the response or failing, one of