UITableView技巧总结
作者:
BlessNeo | 来源:发表于
2015-11-25 14:47 被阅读43次1. 刷新UITableView的某一section或row的数据、UI
//刷新某一个section
NSIndexSet *indexSet=[[NSIndexSet alloc] initWithIndex:2];
[tableview reloadSections:indexSet
withRowAnimation:UITableViewRowAnimationNone];
//刷新某一个cell
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:1 inSection:0];
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil]
withRowAnimation:UITableViewRowAnimationNone];
本文标题:UITableView技巧总结
本文链接:https://www.haomeiwen.com/subject/awzrhttx.html
网友评论