新しい行を挿入したばかりの UITableView があり、この行の NSIndexPath を取得してスクロールしました。この行のセルを短時間点滅させるにはどうすればよいですか?
int indexOfRow = //retrieve row index
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:indexOfRow inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
//cause cell to blink
次は何ですか?