Double
@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) double propertyName;
...Local properties
Slider UI
@DoublePropertySlider(min, max, icon, description, restart)
var propertyName: Doubleimport AppfigurateLibrary
@objcMembers class Configuration: APLConfiguration {
@DoublePropertySlider(min: 60.5, max: 120.41, icon: .volume, description: "Clipping - decibels", restart: false)
var maxDecibel: Double
override func reset() {
maxDecibel = 100.0
}
...DOUBLE_PROPERTY_SLIDER(propertyName, minValue, maxValue, icon, description, restart)@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) double maxDecibel;
@end
@implementation Configuration
DOUBLE_PROPERTY_SLIDER(maxDecibel, 60.5, 120.41, APLIconSliderVolume, @"Clipping - decibels", NO);
- (void) reset {
self.maxDecibel = 100.0;
}
...Editable UI
List UI
Editable List UI
Remote properties
Remote Editable UI
Last updated




