我正在某个动作事件中将单元格添加到uitableview中。单元格添加在uitableview的顶部位置。我希望默认情况下选择新添加的单元格。
答案 0 :(得分:1)
只需在添加单元格后调用表视图的方法 selectRowAtIndexPath:animated:scrollPosition:,假设单元格已添加到第0部分的索引0中:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewRowAnimationTop]