开发者

uitableview issue

开发者 https://www.devze.com 2023-02-16 12:29 出处:网络
I have a navigation based application , start with uitableview , I want when return to the uitableview be refreshed

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

I mean how w开发者_JS百科hen return from screen back to this uitablview

anu suggestion please


All you need is:

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

精彩评论

暂无评论...
验证码 换一张
取 消