1. 程式人生 > >iOS刷新某個cell時候crash

iOS刷新某個cell時候crash

lin eight object data color pos cell animation tomat

//一個section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //一個cell刷新 NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0]; [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

總crash 後來發現刷新之後要end

[tableView endUpdates];


iOS刷新某個cell時候crash