gpt4 book ai didi

ios - 在 iPad 上 : UITableView's separator between header and cells

转载 作者:行者123 更新时间:2023-12-02 02:09:53 26 4
gpt4 key购买 nike

如何删除 UITableView 中标题和单元格之间的分隔符?

你可以看到,就是这条白色的细线

enter image description here

一开始,我使用 iPhone 4S 在 xCode 模拟器中进行开发,这些行没有显示。

然后,我在 iPad Mini 3 设备上运行该应用程序,并显示这些行。可能是因为它的清晰度更高。

关于如何删除此分隔符有什么建议吗?

更新:

似乎只能在 iPad 和 iPadMini 上验证。它甚至无法在 iPhone 6S 上进行验证。

最佳答案

我遇到了同样的问题,并通过将标题 View 设置相同的颜色并将其传递给 viewForHeaderInSection 方法来解决它。我从 Storyboard加载标题 View ,更改 Storyboard中的颜色并没有解决我的问题,但是在将其传递给 viewForHeaderInSection 时以编程方式更改颜色解决了问题。
这是代码片段。< br/>

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
// You can load 'headerView' from xib or storyboard
let headerView = UIView(frame: CGRect(x: 0, y: 0, width: 300, height: 50))
headerView.backgroundColor = UIColor(r: 248, g: 248, b: 248, a: 0.94)
return headerView
}

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 50
}

关于ios - 在 iPad 上 : UITableView's separator between header and cells,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33693287/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com