RxSwiftCommunity / RxKeyboard

Reactive Keyboard in iOS
MIT License
1.61k stars 175 forks source link

adapt to the updated RxCocoa #24

Closed tomisacat closed 7 years ago

tomisacat commented 7 years ago

Due to the API change of RxCocoa, some method has been deprecated and replaced like this:

https://github.com/RxSwiftCommunity/RxKeyboard/blob/master/Sources/RxKeyboard.swift#L107

The bindTo method has been renamed to bind(to), please update to adapt to the latest version of RxCocoa. Appreciate : )

devxoul commented 7 years ago

Hi @tomisacat, there's a pull request for this issue. If you'd like to dismiss warnings from CocoaPods, just add inhibit_all_warnings! to your Podfile.

platform :ios, '8.0'
inhibit_all_warnings!

target ...
tomisacat commented 7 years ago

Alright, good to hear your response and I'll do it.

Appreciate!