gpt4 book ai didi

ios - UIImageView 使用方面填充覆盖整个 UITableViewCell

转载 作者:搜寻专家 更新时间:2023-10-31 08:04:55 24 4
gpt4 key购买 nike

在界面生成器中,我试图创建一个原型(prototype)单元格,其图像覆盖整个单元格,但它没有按预期运行。

正如您在我的界面构建器的以下屏幕截图中所见,我有一个覆盖整个单元格的 ImageView ,并且被限制在单元格的每个边缘:

enter image description here

事实上,这就是我希望它在模拟器上的样子,但我得到的是:

enter image description here

如您所见,它并没有一直锚定到两侧,可能很难看到,但图像实际上延伸到了单元格的底部(如果您看得足够仔细,您可以看到分隔符穿透图像的底部。

这真的有问题,我真的不知道发生了什么。

最佳答案

也许在代码中的单元格内添加一个UIImageView

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//configure cell
let imageView = UIImageView(frame: self.cell.frame)
imageView.image = YOUR_IMAGE
imageView.center = cell.center
imageView.frame.size = cell.frame.size
imageView.contentMode = .ScaleAspectFill
cell.addSubview(imageView)
}

希望这对您有所帮助。

关于ios - UIImageView 使用方面填充覆盖整个 UITableViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35139944/

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