要想每次页面显示的时候,都刷新该页面上的UITableView的数据,只需要在viewDidAppear方法中获取并显示数据,在viewDidDisappear方法中清除数据源并通知tableView去reloadData即可。
- (void)viewDidAppear:(BOOL)animated { NSLog(@"viewDidAppear+++"); tableviewSections=[[NSMutableArray alloc] init]; tableviewData=[[NSMutableArray alloc] init]; //获取数据 [self getuserinfo]; [self.tableview reloadData]; } -(void)viewDidDisappear:(BOOL)animated { NSLog(@"viewDidDisappear+++****"); [tableviewData removeAllObjects]; [tableviewSections removeAllObjects]; [self.tableview reloadData]; }
ios--NavigationViewController返回并刷新UITableView页面,布布扣,bubuko.com