FluidRoundCornerStyle
public struct FluidRoundCornerStyle : OptionSet
A struct determining which corners should be rounded.
-
The raw value.
Declaration
Swift
public let rawValue: Int
-
Top left corner and top right corner.
Declaration
Swift
public static let top: FluidRoundCornerStyle
-
Top right corner and bottom right corner.
Declaration
Swift
public static let right: FluidRoundCornerStyle
-
Bottom left corner and bottom right corner.
Declaration
Swift
public static let bottom: FluidRoundCornerStyle
-
Top left corner and bottom left corner.
Declaration
Swift
public static let left: FluidRoundCornerStyle
-
All corners.
Declaration
Swift
public static let all: FluidRoundCornerStyle
-
No corners.
Declaration
Swift
public static let none: FluidRoundCornerStyle
-
The initializer that instantiates
FluidRoundCornerStyle
object.Declaration
Swift
public init(rawValue: Int)
-
The
UIRectCorner
value.Declaration
Swift
public var roundingCorners: UIRectCorner? { get }
-
The
CACornerMask
value, available on iOS 11 or later.Declaration
Swift
@available(iOS 11.0, *) public var maskedCorners: CACornerMask { get }
-
The description.
Declaration
Swift
public var description: String { get }