如何在 UITableViewController 中使用垂直部分滚动条实现类似 MAC-DOCK 的选择行为?

发布于 2024-12-05 19:44:37 字数 320 浏览 1 评论 0原文

目前,我在表格视图中显示垂直部分滚动条:

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return [SectionModel getAllSectionNames];
}

我需要放大在滚动条上点击的部分名称,并放大一点上一个和下一个部分名称。期望的效果应该类似于 MAC OS X 中的 DOCK 行为。有什么建议从哪里开始吗?

更新:目前,我正在尝试查找任何滚动到部分事件,但没有运气。 UIScrollViewDelegate没有这样的方法。

Currently, I'm displaying vertical section scrollbar in my table view:

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return [SectionModel getAllSectionNames];
}

I need to zoom-in the section name that is tapped on scrollbar, and zoom-in a little bit previous and next section names. The desired effect should be similar to DOCK behavior in MAC OS X. Any suggestions where to start?

UPDATE: Currently, I'm trying to find any scroll-to-section event but with no luck. UIScrollViewDelegate do not have such method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-12-12 19:44:37

目前,我已经意识到用苹果原生方法不可能做到这一点。您需要从头开始实现该滚动条。

另一种选择是使用 UIScrollViewDelegate 方法 sectionForSectionIndexTitle:atIndex: 当您点击滚动条上的具体部分时会调用该方法。然后您可以创建带有放大字母的自定义 UIView 并将其呈现在表视图超级视图上(例如在中心)。这不是想要的效果,而是一些解决方法。

Currently, I have realized that it's impossible to do that with native Apple methods. You need to implement that scrollbar from scratch.

Another option would be to use UIScrollViewDelegate method sectionForSectionIndexTitle:atIndex: that gets called when you tap on concrete section on scrollbar.Then you might create custom UIView with zoomed-in letter and present it on tableviews superview (for example at center). It's not the desired effect but some workaround.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文