RxSwiftCommunity / RxCocoa-Texture

RxCocoa Extension Library for Texture.
MIT License
100 stars 52 forks source link

[Feature] Support SharedSequenceConvertibleType extension about DriverSharingStrategy #14

Closed GeekTree0101 closed 5 years ago

GeekTree0101 commented 5 years ago

New Feature

Now RxCocoa-Texture support SharedSequenceConvertibleType extension about DriverSharingStrategy


        Driver.just(url)
            .drive(imageNode2.rx.url, setNeedsLayout: self)
            .disposed(by: disposeBag)

        Driver.just(Optional<String>("optional test"))
            .drive(textNode2.rx.text(nil), setNeedsLayout: self)
            .disposed(by: disposeBag)

@OhKanghoon plz review this PR :) thank you