我怎样才能减少sectionIndexTitlesForTableView的空间
我有一个带有页脚和页眉以及一个部分索引标题的表格视图。我的问题是我看不到第一个值和最后一个值。如何在页眉位置之后和页脚位置之前开始sectiontindextitle?
i have a tableview with footer and header and a sectionindextitle. My problem is that i cant see the first value and the last one. how can i start the sectiontindextitle after the header position and before the footer position ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
索引出现在 tableView 层的顶部,并且由于表视图页眉和页脚滚动。表视图页眉或页脚会更改固定索引的大小是没有意义的。
要执行您想要的操作,您需要将页眉和页脚移出表格视图,并添加单独的视图(使用较小的表格视图)。
The index appears on top of the tableView layer and since the table view header and footer scroll. It doesn't make sense that the table view header or footer would change the size of the fixed index.
To do what you want, you would need to move the header and footer out of the table view and add separate views, with a smaller table view.