Swift

时间:2017-10-24 12:29:14

标签: ios swift swift3 uicollectionview rounded-corners

我有一个CollectionViewController,我想将角半径设置为CollectionView(标题视图下方的部分)。

enter image description here

这就是我想要的(角半径为黄色)。可能吗?你对我怎么做到了吗?

2 个答案:

答案 0 :(得分:3)

        extension UICollectionView {
    func roundCorners(_ corners:UIRectCorner, radius: CGFloat) {
        let path = UIBezierPath(roundedRect: self.bounds, byRoundingCorners: corners, cornerRadii: CGSize(width: radius, height: radius))
        let mask = CAShapeLayer()
        mask.path = path.cgPath
        self.layer.mask = mask
    }}

   collectioniew.roundCorners([.topLeft,.topRight], radius: 5)

答案 1 :(得分:0)

解决方案非常简单。 我刚刚删除了collectionViewLayout顶部的插图,并为HeaderView添加了一个新视图。 之后,我将角半径应用于添加的视图,并且工作正常:)