CornerOptions
public enum CornerOptions : Equatable
Options for the corners of the presented view controller.
-
Rounds all corners by the given
radius
.Declaration
Swift
case roundAllCorners(radius: CGFloat)
-
Rounds the corners specified in
corners
by the givenradius
.Declaration
Swift
case roundSomeCorners(radius: CGFloat, corners: CACornerMask)
-
Does not round corners.
Declaration
Swift
case none