我有一个 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
接下来是什么?