ios--NavigationViewController返回并刷新UITableView页面

要想每次页面显示的时候,都刷新该页面上的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

ios--NavigationViewController返回并刷新UITableView页面

上一篇:2.移动工具


下一篇:Effective Objective-C 2.0 编写高质量iOS与OS X代码 在既有类中使用关联对象存放自定义数据