Corner Radius: Spesifik bir köşe için örnek kullanım

Tasarımdaki bir view spesifik bir köşeden radius verilmiş ise aşağıdaki örnek kod ile bu görünüm sağlanabilmektedir.


import UIKit

extension CACornerMask {
    static let bottomLeft = CACornerMask.layerMinXMaxYCorner
    static let bottomRight = CACornerMask.layerMaxXMaxYCorner
    static let topLeft = CACornerMask.layerMinXMinYCorner
    static let topRight = CACornerMask.layerMaxXMinYCorner
}

view.layer.maskedCorners = [.bottomLeft, .bottomRight]