When I implement this method in my TTTableViewController:
- (id<UITableViewDelegate>)createDelegate {
return [[[TTTableViewDragRefreshDelegate alloc] initWithController:self] autorelease];
}
I get the "pull down to update ..." function, however it does not display the date and time of the last update (for example, I see in facebook and twitter applications).
I am sure that this is due to the fact that I do not implement any protocol method or something like that, but I'm not sure which method I need to implement. The table displays my data just fine, so I'm not sure what I am missing.
Any ideas?
This is what I see:

But this is what I want to see:

source
share