WMFWeightType
Objective-C
NS_ENUM(int, WMFWeightType) {
WMF_EXP = 1,
WMF_IV1 = 1 << 1,
WMF_IV2 = 1 << 2,
WMF_COS = 1 << 3,
WMF_JAC = 1 << 4,
WMF_OFF = 1 << 5
}
Swift
enum WMFWeightType : Int32
-
Declaration
Objective-C
WMF_EXP = 1Swift
case EXP = 1 -
Declaration
Objective-C
WMF_IV1 = 1 << 1Swift
case IV1 = 2 -
Declaration
Objective-C
WMF_IV2 = 1 << 2Swift
case IV2 = 4 -
Declaration
Objective-C
WMF_COS = 1 << 3Swift
case COS = 8 -
Declaration
Objective-C
WMF_JAC = 1 << 4Swift
case JAC = 16 -
Declaration
Objective-C
WMF_OFF = 1 << 5Swift
case OFF = 32
View on GitHub
WMFWeightType Enumeration Reference