大家好,我正在尝试测试"观察文本编辑的示例"来自https://github.com/ReactiveCocoa/ReactiveCocoa
然而,当我尝试使用rac_textSignal()
信号时,我收到错误说" UITextField类型的值没有成员" rac_textSignal"
有人可以指出我在这里做错了吗? 非常感谢你。
class ViewController: UIViewController {
@IBOutlet var textField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let searchStrings = textField.rac_textSignal()
}
}
答案 0 :(得分:1)
在任何地方使用它来导入ReactiveCocoa。
import ReactiveCocoa