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

tableView的局部刷新问题

时间:2016-06-12 10:39:55      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

解决办法

 //局部section刷新
    NSIndexSet * nd=[[NSIndexSet alloc]initWithIndex:1];//刷新第二个section
    [tview reloadSections:nd withRowAnimation:UITableViewRowAnimationAutomatic];

    //局部cell刷新
    NSIndexPath *te=[NSIndexPath indexPathForRow:2 inSection:0];//刷新第一个section的第二行
    [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:te,nil] withRowAnimation:UITableViewRowAnimationMiddle];

 

tableView的局部刷新问题

标签:

原文地址:http://www.cnblogs.com/superbobo/p/5576775.html

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