ビューの 1 つに、かなり頻繁に更新される UITableView があります。変更の追跡は、「reloadRowsAtIndexPaths」を使用して従来の方法で行われます
-(void)refreshCells:(NSArray *)changedCells
{
NSLog(@"refreshCells %i",[changedCells count]);
[TableView beginUpdates];
[TableView reloadRowsAtIndexPaths:changedCells withRowAnimation:UITableViewRowAnimationBottom];
[TableView endUpdates];
}
質問: ユーザーが最後に選択したセルを保持するにはどうすればよいですか。更新のたびにセルの位置が変わる可能性があります。