Ali
Ali

Reputation: 2025

uitableview issue

I have a navigation based application , start with uitableview , I want when return to the uitableview be refreshed

I mean how when return from screen back to this uitablview

anu suggestion please

Upvotes: 1

Views: 77

Answers (1)

WrightsCS
WrightsCS

Reputation: 50707

All you need is:

-(void)viewWillAppear:(BOOL)animated 
{
    [super viewWillAppear:animated];
    [self.tableView reloadData];
}

Upvotes: 1

Related Questions