[iOS]NSIndexPath初始化

[iOS]NSIndexPath初始化
初始化
 
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
UITableViewCell *selectCell = (UITableViewCell *) [_tableView cellForItemAtIndexPath:indexPath];

刷新
[_tableView beginUpdates];
[_tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
[_tableView endUpdates];


你可能感兴趣的:([iOS]学习笔记)