gpt4 book ai didi

ios - 如何在 Swift 中向 UICollectionViewCell 添加背景图像?

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

我原以为将背景图像添加到 UICollectionViewCell 会很容易,但我无法弄明白。我有一个像这样的边框图像,我想将它添加到我的 UICollectionView 中的每个单元格。

边框.png

enter image description here

我在 Interface Builder 中看不到添加它的选项,我不确定以编程方式在 UICollectionViewCell 上使用哪种方法。

我见过这些类似的问题:

最佳答案

我知道这是一个老问题,有一个公认的答案。但为什么不像这样设置单元格的边框:

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell
{
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath)

cell.layer.borderWidth = 1.5
cell.layer.borderColor = UIColor.blueColor().CGColor
cell.layer.cornerRadius = 4

return cell
}

这样你就不需要使用图像了。只需调整 borderWidth 和 cornerRadius,直到获得所需的效果。

关于ios - 如何在 Swift 中向 UICollectionViewCell 添加背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32921666/

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