SimpleTwoWayBindingIOS
SimpleTwoWayBindingIOS copied to clipboard
An ultra light, ultra simple two way binding library for IOS and Swift.
When trying to make custom class and accessing method valueChanged, system generates an error because init() method has not been implemented for this class. The simplest solution is to put...
What if i need to bind other properties on a UIControl?
I noticed that there's no support for removing an observer, and observers are held in an array. That means that over time, as more and more views are used, the...
The `updateValue` methods in the `UITextField` and `UITextView` appear to be tickling a UIKit bug, causing the cursor to unexpectedly jump to the end of the text field while editing....
Probably a stupid question ... but how do you un-bind a control ? I added the binding to a view in a UITableViewCell and I'm having some troubles as other...
Hey, right now this library has Observable which might support on theory observing optional types. The problem is that when the value is being set, you have this check: ```...
If I have multiple text fields in a table observing changes to a model property, then as the cells are reused they start observing multiple properties. This can be fixed...
Hi, how would you change especially the target/action piece in the bind method to cater for NSControls instead of UIControls? Thanks, Daniel