APLRemotePropertyType
Objective-C
enum APLRemotePropertyType : NSInteger {}
Swift
enum APLRemotePropertyType : Int, @unchecked Sendable
The propertyType
parameter in the APLFetchRemoteConfiguration
function indicates both the type of the
defaultValue
parameter and the expected result of the block.
-
BOOL (Objective-C), Bool (Swift)
Declaration
Objective-C
APLRemotePropertyTypeBool
Swift
case bool = 0
-
NSInteger (Objective-C), Int (Swift)
Declaration
Objective-C
APLRemotePropertyTypeInt
Swift
case int = 1
-
double (Objective-C), Double (Swift)
Declaration
Objective-C
APLRemotePropertyTypeDouble
Swift
case double = 2
-
NSString (Objective-C), String (Swift)
Declaration
Objective-C
APLRemotePropertyTypeString
Swift
case string = 3