RxSwiftのメモ
ViewModelからUISearchBarへ値をセット
これでセットすると、UISearchBarからの変更通知がこない?
import RxCocoa
class ViewModel {
let textOutput: PublishRelay<String?> = PublishRelay<String?>()
}
import UIKit
import RxSwift
import RxCocoa
class ViewController : UIViewController {
private let vm: ViewModel = ViewModel()
private let disposeBag: DisposeBag = DisposeBag()
@IBOutlet private weak var searchBar: UISearchBar! {
didSet {
self.vm.textOutput
.bind(to: self.searchBar.rx.text)
.disposed(by: self.disposeBag)
}
}
}
メソッドの実行を検知する
継承してオーバーライドしなくとも下記のようにしてメソッドの実行を検知できる
let view = UIView()
view.rx.methodInvoked(#selector(UIView.layoutSubviews))
.subscribe(onNext: { _ in
// 処理
})
Author And Source
この問題について(RxSwiftのメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/nakan-D128/items/36427246c2fd2bf65dfc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .