UITableView 的自定义部分标题视图

发布于 2024-11-09 11:48:43 字数 95 浏览 0 评论 0原文

在一些应用程序中,例如 Cool Iris、LiveShare,我看到它们使用自定义视图作为普通的 UITableView 部分标题。有没有办法用自定义视图替换标准部分标题栏?

In some apps such as Cool Iris, LiveShare, i see them using custom views for their plain UITableView section titles. Is there a way to replace the standard section title bar with a custom view?

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

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

发布评论

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

评论(1

小嗲 2024-11-16 11:48:43

为了自定义节标题的外观,您可能需要使用两种方法。

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

这些

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

都可以在 UITableView 委托协议中找到。第一个将让您创建一个自定义视图以显示为节标题。第二个只是确保您获得所需的尺寸,这样您的视图就不会被切断

In order to customize the look of your section header, there are two methods you will probably want to use.

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

and

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

These are both found in the UITableView delegate protocol. The first will let you create a custom view to display as your section header. The second just makes sure you get the size you want for it so that your view doesn't get cut off

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