Three20 "pull down to update" does not show the last update time

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:

alt text

But this is what I want to see:

alt text

+3
source share
1 answer

TTURLRequestModel? ,

- (void)requestDidFinishLoad:(TTURLRequest*)request

[super requestDidFinishLoad:request];

- , . TTURLRequestModel, , , .

+1

Source: https://habr.com/ru/post/1780619/


All Articles