RxSwift bindings for common UIColor setters.
UIView (backgroundColor), UILabel (textColor) and UIButton (titleColor and tintColor+titleColor).
Theming.sharedInstance.accentColor
.bindTo(commentsButton.rx_color)
.addDisposableTo(disposeBag)Theming.sharedInstance.accentColor
.bindTo(label.rx_textColor)
.addDisposableTo(disposeBag)Theming.sharedInstance.backgroundColor
.bindTo(label.rx_backgroundColor)
.addDisposableTo(disposeBag)RxResult is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "RxColor"RxResult is available under the MIT license. See the LICENSE file for more info.