如何在 UITableViewController 中使用垂直部分滚动条实现类似 MAC-DOCK 的选择行为?
目前,我在表格视图中显示垂直部分滚动条:
-(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,我已经意识到用苹果原生方法不可能做到这一点。您需要从头开始实现该滚动条。
另一种选择是使用 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.