Skip to content

Instantly share code, notes, and snippets.

@stremsdoerfer
Last active January 15, 2017 05:32
Show Gist options
  • Save stremsdoerfer/bb218a51e138a772b5d0f1a8d3438eaf to your computer and use it in GitHub Desktop.
Save stremsdoerfer/bb218a51e138a772b5d0f1a8d3438eaf to your computer and use it in GitHub Desktop.
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