我在我的项目中制作了UICollectionView
。它是自定义UICollectionViewCell
。当我运行应用时,它会显示UICollectionViewCell
周围的黑色边框。请告诉我如何删除自定义单元格周围的边界?
答案 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中测试了代码