• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 使用 sectionForSectionIndexTitle 在 UITableView 中快速滚动

[复制链接]
菜鸟教程小白 发表于 2022-12-13 11:39:21 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想通过点击 UITableView 侧面的 sectionIndexTitles 来允许滚动浏览我的 UITableView。到目前为止,我的解决方案如下:

- (NSInteger)tableViewUITableView *)tableView sectionForSectionIndexTitleNSString *)title atIndexNSInteger)index
{
    NSIndexPath *matchingIndexPathForTitle = [self matchingIndexPathForSectionIndexTitle:title];
    if (matchingIndexPathForTitle) {
        [tableView scrollToRowAtIndexPath:matchingIndexPathForTitle
                         atScrollPosition:UITableViewScrollPositionTop animated:YES];
    }
    return 1;
}

但似乎从 iOS9 开始它总是滚动到 UITableView

的顶部

我可以保证 matchingIndexPathForTitle 是正确的(例如第 1 节,第 22 行),并且更改为 animated:NO 也没有什么不同。

你有吗

  1. 对这种奇怪的行为有什么解释吗?或
  2. 对如何实现 iOS 9 的快速滚动有什么建议吗?



Best Answer-推荐答案


由于 sectionForSectionIndexTitle 负责滚动到右侧部分,而不是单元格,因此在此方法中返回有效的部分索引号将取消所有自定义滚动事件。

为了滚动到一个单元格,必须阻止滚动到该部分。这可以通过返回无效的节索引来完成,例如-1

- (NSInteger)tableViewUITableView *)tableView sectionForSectionIndexTitleNSString *)title atIndexNSInteger)index
{
    NSIndexPath *matchingIndexPathForTitle = [self matchingIndexPathForSectionIndexTitle:title];
    if (matchingIndexPathForTitle) {
        [tableView scrollToRowAtIndexPath:matchingIndexPathForTitle
                         atScrollPosition:UITableViewScrollPositionTop animated:YES];
    }
    return -1; // this will do the trick and not scroll to any section
}

关于ios - 使用 sectionForSectionIndexTitle 在 UITableView 中快速滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33518973/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap