Boolean
@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) BOOL propertyName;
...Local properties
Switch UI
@BoolProperty(description, restart)
var propertyName: Boolimport AppfigurateLibrary
@objcMembers class Configuration: APLConfiguration {
@BoolProperty(description: "Enable debug logging to console", restart: false)
var logging: Bool
override func reset() {
logging = true
}
...BOOL_PROPERTY(propertyName, description, restart)@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) BOOL logging;
@end
@implementation Configuration
BOOL_PROPERTY(logging, @"Enable debug logging to console", NO);
- (void) reset {
self.logging = YES;
}
...Remote properties
Remote Switch UI
Last updated

