Closed jverkoey closed 7 years ago
runtime.get(slider).value
ReactiveProperty<CGFloat>
runtime.get(slider).min
runtime.get(slider).max
These APIs will enable things like:
let reactiveSlider = runtime.get(tensionSlider) runtime.connect(reactiveSlider.value, to: spring.tension)
🎊 My diff is ready for review at http://codereview.cc/D3210
runtime.get(slider).value
should return aReactiveProperty<CGFloat>
that maps to the slider's value.runtime.get(slider).min
should return aReactiveProperty<CGFloat>
that maps to the slider's minimum value.runtime.get(slider).max
should return aReactiveProperty<CGFloat>
that maps to the slider's maximum value.These APIs will enable things like: