有没有办法确定什么是“顶部”? UITableView 的节标题?
有没有办法确定 UITableView 的“顶部”部分标题是什么?
对于“顶部节标题”,我指的是粘在 UITableView 边界顶部的节标题。
Is there a way to determine what is the "top" section header of a UITableView?
For "top section header" I mean the section header that is sticky at the top of the UITableView bounds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用以下方法获取部分编号:
我希望有所帮助。
You can get the section number using this:
I hope that helps.
您将需要使用 -(UIView) viewForHeaderInSection 方法。这将允许您使用自己的 UI 视图作为表视图部分的标题。
You'll want to use the -(UIView) viewForHeaderInSection method. This will allow you to use your own UI view as the header for the table view section.
可以通过
UITableView
的属性tableHeaderView
访问它。如果您指的是 TABLE 标头(和 TABLE 页脚),而不是 SECTION 页眉/页脚,那么您 header,那么您需要通过实现
UITableViewDelegate
方法-tableView:viewForHeaderInSection:
来创建它If you mean the TABLE header (and the TABLE footer) - not the SECTION header/footer, then you access it through
tableHeaderView
a property of theUITableView
If you want the SECTION header, then you need to create it by implementing the
UITableViewDelegate
method-tableView:viewForHeaderInSection: