UITableView 的自定义部分标题视图
在一些应用程序中,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了自定义节标题的外观,您可能需要使用两种方法。
这些
都可以在 UITableView 委托协议中找到。第一个将让您创建一个自定义视图以显示为节标题。第二个只是确保您获得所需的尺寸,这样您的视图就不会被切断
In order to customize the look of your section header, there are two methods you will probably want to use.
and
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