首页 > 其他 > 详细

刷新TabelView的方法

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

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

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

[self.heroTableView reloadRowsAtIndexPaths: withRowAnimation:UITableViewRowAnimationRight];

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

刷新TabelView的方法

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!