UITableViewCell内で受け取った値の更新をしようとしたら嵌ったのでメモ。 cellだけ更新したい場合は、reloadRowsAtIndexPaths:withRowAnimation:でcellを指定して UITableView* myTableView = テーブルビュー; for (int i = 行数 - 1; i >= 0; --i) { if (何らかの条件) { NSIndexPath* indexPath = [NSIndexPath indexPathForRow:i inSection:0]; NSArray* indexPaths = [NSArray arrayWithObject:indexPath]; [myTableView reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewR