iOS基础控件iOS 开发iOS 进阶

iOS: TableView如何刷新指定的cell 或secti

2016-06-30  本文已影响11227人  远处那片海
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];    
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];    
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];    
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
上一篇下一篇

猜你喜欢

热点阅读