Answers for "swift make round corners top right corner"

3

add top corner radius swift

extension UIView {
   func roundCorners(corners: UIRectCorner, radius: CGFloat) {
        let path = UIBezierPath(roundedRect: bounds, byRoundingCorners: corners, cornerRadii: CGSize(width: radius, height: radius))
        let mask = CAShapeLayer()
        mask.path = path.cgPath
        layer.mask = mask
    }
}
Posted by: Guest on July-10-2020

Code answers related to "swift make round corners top right corner"

Code answers related to "Swift"

Browse Popular Code Answers by Language