iPhone SDKの話。 UITableView で、1行単位で行をリフレッシュ(最新の内容で表示を更新する)には、 以下のように、reloadRowsAtIndexPaths を使う。 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:UITableViewRowAnimationNon