我创建了一个包含多个单元格的collectionView。但是我想创建一个自定义边框,其边框是一种颜色,其余边是另一种颜色。我怎样才能做到这一点?到目前为止,我刚刚在我的细胞亚类中创建了一个正常的边界
//Cell
self.backgroundColor = UIColor.whiteColor()
self.layer.borderColor = UIColor(rgba: "#f2f2f2").CGColor
self.layer.borderWidth = 1
self.layer.masksToBounds = true
self.clipsToBounds = true