答案 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添加了一个新视图。 之后,我将角半径应用于添加的视图,并且工作正常:)