我创建了ios应用程序。 uitableview每行显示在文本框上。按钮单击以移动下一行。默认显示10行。最后一条记录滚动到另一条记录。 这是代码
if (![self.tableView.indexPathsForVisibleRows containsObject:indexPath]) {
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition: UITableViewScrollPositionMiddle animated:YES];
self.nextRow = i;
self.nextColumn = j;
}
现在滚动表格但光标聚焦在最后的记录上(10)。如何专注于第11条记录。这是附件