[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
这种单独刷新某一行/sectioncell的做法只适用于section cell.number不变的情况下 可以在某个方法里家这个代码 否则就会崩溃
解决方法: [tableViewreloadData];
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
这种单独刷新某一行/sectioncell的做法只适用于section cell.number不变的情况下 可以在某个方法里家这个代码 否则就会崩溃
解决方法: [tableViewreloadData];
本文标题:tableView单独刷新某一行的时候崩溃
本文链接:https://www.haomeiwen.com/subject/herhpqtx.html
网友评论