我们可以将段(UITableView)添加到段号吗?
例如,我想从第3节开始?
答案 0 :(得分:0)
如果要以特定部分位于视图顶部的方式放置表格的行,请执行以下操作:
UITableView *tableView; // <<== This is your table view
...
NSInteger desiredSection = 3;
NSIndexPath *scrollTo = [NSIndexPath indexPathForRow:0 inSection:desiredSection];
[tableView scrollToRowAtIndexPath:scrollTo
atScrollPosition:UITableViewScrollPositionTop
animated:YES]; // <<== Use NO if you do not want animation