I'm trying to learn RxSwift by sample code, tutorials etc, but since most tutorials are for Swift 2 and previous versions of RxSwift, syntax have changed a bit. Normally that wouldn't be a problem, as it is possible to find the new syntax by code completion, but for RxCocoa I'm sometimes getting nothing. Example:
// UITextField
textField.rx.text.
I'm getting no suggestions at all, even though I know there are methods, since I was able to figure them out manually, but it takes a lot of time. What am I doing wrong?
Using XCode 8.1, Swift 3, RxSwift/RxCocoa 3.1, macOS Sierra and Cocoa Pods (latest stable version, updated yesterday). I've tried to create new projects and deleting DerivedData, but with the same result.