Last active
January 15, 2017 05:32
-
-
Save stremsdoerfer/bb218a51e138a772b5d0f1a8d3438eaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ViewController: UIViewController { | |
@IBOutlet weak var searchBar: UISearchBar! | |
@IBOutlet weak var label: UILabel! | |
override func viewDidLoad() { | |
searchBar.rx.text.throttle(0.2, scheduler: MainScheduler.instance).subscribe(onNext: {(searchText) in | |
self.label.text = "new value: \(searchText)" | |
}).addDisposableTo(bag) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment