Float
@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) float propertyName;
...Dart property type
Swift property type
Objective-C property type
Kotlin property type
Java property type
Local properties
Slider UI
@FloatPropertySlider(min, max, icon, description, restart)
var propertyName: Floatimport AppfigurateLibrary
@objcMembers class Configuration: APLConfiguration {
@FloatPropertySlider(min: 60.5, max: 120.41, icon: .volume, description: "Clipping - decibels", restart: false)
var maxDecibel: Float
override func reset() {
maxDecibel = 100.0
}
...FLOAT_PROPERTY_SLIDER(propertyName, minValue, maxValue, icon, description, restart)@import AppfigurateLibrary;
@interface Configuration : APLConfiguration
@property(nonatomic, assign) float maxDecibel;
@end
@implementation Configuration
FLOAT_PROPERTY_SLIDER(maxDecibel, 60.5, 120.41, APLIconSliderVolume, @"Clipping - decibels", NO);
- (void) reset {
self.maxDecibel = 100.0;
}
...Editable UI
List UI
Editable List UI
Last updated



