码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView进阶,cell刷新,界面返回 保持所选cell

时间:2016-05-03 23:27:13      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

1.cell 刷新

NSIndexPath  *indexPath_1=[NSIndexPath indexPathForRow:1 inSection:0];
NSArray      *indexArray=[NSArray  arrayWithObject:indexPath_1];

[_tableView reloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationNone];

  

2.界面返回,保持所选cell

-(void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    NSIndexPath *selected = [_tableView indexPathForSelectedRow];
    if(selected) [_tableView selectRowAtIndexPath:selected animated:NO scrollPosition:UITableViewScrollPositionNone];
}

  

UITableView进阶,cell刷新,界面返回 保持所选cell

标签:

原文地址:http://www.cnblogs.com/qiyer/p/5456670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!