Spacing
public enum Spacing : CGFloat
Spacings should be multiples of 8.
-
none means no space
Declaration
Swift
case none = 0 -
small means 8 pts of space
Declaration
Swift
case small = 8 -
medium means 16 pts of space
Declaration
Swift
case medium = 16 -
large means 24 pts of space
Declaration
Swift
case large = 24 -
xLarge means 32 pts of space
Declaration
Swift
case xLarge = 32
Spacing Enumeration Reference