嘿 有什么聪明的方法可以跳转到带有节索引的表格页眉或页脚?我想要的是在跳转到标题的索引顶部添加一个段索引,在底部添加另一个索引,使您无需滚动即可进入页脚。
有什么想法吗?
答案 0 :(得分:1)
我会在UITableView
上使用以下方法滚动到正确的索引路径:
- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated
。
使用+ (NSIndexPath *)indexPathForRow:(NSUInteger)row inSection:(NSUInteger)section
上的NSIndexPath
方法生成每个部分的索引路径,将行设置为0,部分从0开始到部分总数,可以从数据源。