我有这样的代码:
let disposeBag = DisposeBag()
tvSearchItem.rx.text.orEmpty
.filter { text in text.count >= 3 }
.flatMapLatest { text in cnfClient.getCNFacts(search: text, searchType: "t:t") }
.bind(to: self.tableView.rx.items(cellIdentifier: "cell", cellType: UITableViewCell.self)) { row, element, cell in
if self.shouldShowSearchResults {
cell.textLabel?.text = element["result"]!
cell.detailTextLabel?.text = element["location"]!
}
}
.disposed(by: disposeBag)
但是Xcode给了我
“活动”类型的值没有成员“文本”
我在做什么错了?
谢谢!
答案 0 :(得分:0)
确保文件中包含import RxCocoa
和import RxSwift