如何在iOS中删除UICollectionView周围的边框?

时间:2015-11-04 06:15:25

标签: ios objective-c uicollectionview

我在我的项目中制作了UICollectionView。它是自定义UICollectionViewCell。当我运行应用时,它会显示UICollectionViewCell周围的黑色边框。请告诉我如何删除自定义单元格周围的边界?

enter image description here

2 个答案:

答案 0 :(得分:2)

UICollectionViewCell *cell = [[UICollectionViewCell alloc] init];
cell.layer.borderColor = (__bridge CGColorRef _Nullable)([UIColor clearColor]);

cell是Collection View单元格的名称。这行代码将使边框颜色透明。

答案 1 :(得分:0)

Swift 5版本

var cell = UICollectionViewCell()
cell.layer.borderColor = UIColor.clear.cgColor

在Swift 5中测试了代码