当我向上和向下滚动表格视图时,我得到表格视图单元格未被选中。我应该如何在代码中使用以下方法?
[tableview selectRowAtIndexPath:animated:scrollPosition];
当我向上和向下滚动表格视图时,我得到表格视图单元格未被选中。我应该如何在代码中使用以下方法?
[tableview selectRowAtIndexPath:animated:scrollPosition];
我应该如何在代码中使用以下方法?
[tableview selectRowAtIndexPath:animated:scrollPosition];
示例:在 tableview 上添加一个新单元格并向上滚动表格以添加添加的单元格:
NSArray *indexPaths = [NSArray arrayWithObjects: [NSIndexPath indexPathForRow:[self.yourDataSource count]-1 inSection:0],nil];
[self.myTableView beginUpdates];
[self.myTableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];
[self.myTableView endUpdates];
[self.myTableView scrollToRowAtIndexPath:indexPaths atScrollPosition:UITableViewScrollPositionTop animated:YES];