Why are rx.text / rx.observe / rx.etc not available (RxSwift)

384 Views Asked by At

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?

1

There are 1 best solutions below

2
On BEST ANSWER

You have to add import RxCocoa at the top too