Reputation: 2025
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
Reputation: 50707
All you need is:
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self.tableView reloadData];
}
Upvotes: 1