gpt4 book ai didi

ios - 表格 View 末尾的巨大空白区域

转载 作者:行者123 更新时间:2023-11-28 15:27:56 25 4
gpt4 key购买 nike

我的牢房下方似乎有一个巨大的空旷不透明区域。当我向上滚动表格 View 时,我可以看到有一个不透明区域覆盖了表格 View 的亮橙色背景,如右侧屏幕截图所示。基于此question ,我尝试将 footerHeight 设置为 0 并将 footerView 设置为空 View ,但它没有用。有什么解决办法吗?

enter image description here enter image description here

代码

private func setupSongsTable() {
let frame = CGRect(x: 0, y: 0, width: Screen.width, height: Screen.height)
songsTable = UITableView(frame: frame, style: UITableViewStyle.plain)
songsTable.sectionIndexBackgroundColor = UIColor.clear
songsTable.backgroundColor = .orange
songsTable.isOpaque = false
songsTable.backgroundView = nil
self.view.addSubview(songsTable!)
}

public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
cell.backgroundColor = .blue
return cell
}

最佳答案

尝试将 tableView.backgroundColor 设置为 .clear。如果这不起作用,请检查您的单元格的背景颜色是什么。 单元格背景颜色。从您的屏幕截图来看,您的单元格看起来像是白​​色背景色,而您的表格是默认的苹果浅灰色。

关于ios - 表格 View 末尾的巨大空白区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44992707/

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