有没有办法确定什么是“顶部”? UITableView 的节标题?

发布于 2024-11-27 02:53:53 字数 87 浏览 0 评论 0原文

有没有办法确定 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 技术交流群。

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

发布评论

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

评论(3

守望孤独 2024-12-04 02:53:53

您可以使用以下方法获取部分编号:

NSUInteger sectionNumber = [tableView indexPathForCell: [[[tableView visibleCells] objectAtIndex: 0] section]];

我希望有所帮助。

You can get the section number using this:

NSUInteger sectionNumber = [tableView indexPathForCell: [[[tableView visibleCells] objectAtIndex: 0] section]];

I hope that helps.

月依秋水 2024-12-04 02:53:53

您将需要使用 -(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.

霓裳挽歌倾城醉 2024-12-04 02:53:53

可以通过 UITableView 的属性 tableHeaderView 访问它。

tableHeaderView Returns an accessory view that is displayed above the table.

@property(nonatomic, retain) UIView *tableHeaderView

如果您指的是 TABLE 标头(和 TABLE 页脚),而不是 SECTION 页眉/页脚,那么您 header,那么您需要通过实现 UITableViewDelegate 方法 -tableView:viewForHeaderInSection: 来创建它

tableView:viewForHeaderInSection: Asks the delegate for a view object to display in the header of the specified section of the table view.

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

If you mean the TABLE header (and the TABLE footer) - not the SECTION header/footer, then you access it through tableHeaderView a property of the UITableView

tableHeaderView Returns an accessory view that is displayed above the table.

@property(nonatomic, retain) UIView *tableHeaderView

If you want the SECTION header, then you need to create it by implementing the UITableViewDelegate method -tableView:viewForHeaderInSection:

tableView:viewForHeaderInSection: Asks the delegate for a view object to display in the header of the specified section of the table view.

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