gpt4 book ai didi

ios - 容器 View 白色背景,iPad Swift 问题

转载 作者:可可西里 更新时间:2023-11-01 00:37:53 24 4
gpt4 key购买 nike

我的问题只出现在 iPad 上。默认情况下,我的容器 View 是清晰/透明的。它在 iPhone 上运行良好,但在 iPad 上显示时默认为白色背景。大多数自定义 uitableviews 也存在相同的问题。

我在下面附上了问题的图片:

最佳答案

这基本上是我的问题的解决方案,我唯一需要添加的是使用 tableViewDelegate 的“willDisplayCell”方法,我将附加快速代码。

override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
var backgroundView : UIView = UIView(frame: CGRect.zeroRect)
backgroundView.backgroundColor = UIColor.clearColor()
cell.backgroundView = 背景 View
cell.backgroundColor = UIColor.clearColor()
}

关于ios - 容器 View 白色背景,iPad Swift 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28688474/

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