Separation between Header and first cell -- In plain UITableView(标题和第一个单元格之间的分离——在普通的 UITableView 中)
问题描述
我有一张普通风格的桌子,只有一个部分.我有一个实现的 viewForHeaderInSection:
在节标题中添加自定义视图.
I have a table with with Plain style and only one section. I have a implemented viewForHeaderInSection:
to add a custom view in the section header.
我无法在我的表格部分标题视图和我的第一个视图之间看到分隔线细胞.[见附图]
I am not able to see a separation line between my table section header view and my first cell. [See the attached image]
我做错了什么?
推荐答案
自定义页眉和页脚不包含下方/上方的分隔符.您需要自己在自定义视图中实现分隔符(或切换到分组样式,即使使用自定义页眉/页脚,也会在其上方和下方显示组的轮廓).
Custom headers and footers do not contain separators below/above them. You'll need to implement the separator yourself in the custom view (or switch to grouped style, which will show the outline of the group above and below it even with a custom header/footer).
这篇关于标题和第一个单元格之间的分离——在普通的 UITableView 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:标题和第一个单元格之间的分离——在普通的 UITableView 中
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01