I've created a simple project with Cocoapods and installed RxSwift and RxCocoa.
I've written this code:
import UIKit
import RxSwift
class ViewController: UIViewController {
@IBOutlet weak var field: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
//self.field.rx. (only suggests `base`)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
so I should be able to get self.field.rx.text
right? But I only get self.field.rx.base
What am I missing?
You have to add
import RxCocoa
at the top too