Integer
@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) NSInteger propertyName;
...Local properties
Slider UI
@IntPropertySlider(min, max, icon, description, restart)
var propertyName: Intimport AppfigurateLibrary
@objcMembers class Configuration: APLConfiguration {
@IntPropertySlider(min: 50, max: 100, icon: .volume, description: "Limit volume level", restart: true)
var volumeRange: Int
override func reset() {
volumeRange = 75
}
...INT_PROPERTY_SLIDER(propertyName, minValue, maxValue, icon, description, restart)@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) NSInteger volumeRange;
@end
@implementation Configuration
INT_PROPERTY_SLIDER(volumeRange, 50, 100, APLIconSliderVolume, @"Limit volume level", NO);
- (void) reset {
self.volumeRange = 75;
}
...Editable UI
List UI
Editable List UI
Remote properties
Remote Editable UI
Last updated




