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

刷新TabelView的方法

时间:2014-06-07 03:42:59      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:c   a   cti   代码   for   table   

关于刷新TabelView的方法
1、尽量不要用[self.tableView reloadData];因为这个会全部刷新,会很费资源,只需要刷新需要刷新的某行或者多行就行了
代码:
// 刷新指定行
NSIndexPath *path = [NSIndexPath indexPathForRow:alertView.tag inSection:0];

// @[path]将需要刷新的行包装进一个数组,传给tableView

[self.heroTableView reloadRowsAtIndexPaths: withRowAnimation:UITableViewRowAnimationRight];

刷新TabelView的方法,布布扣,bubuko.com

刷新TabelView的方法

标签:c   a   cti   代码   for   table   

原文地址:http://www.cnblogs.com/lianpihou/p/3756133.html

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