Skip to content

Instantly share code, notes, and snippets.

@rickyngan
Created September 28, 2016 07:22
Show Gist options
  • Save rickyngan/b2ce9b88594e1f88ac1599d250803c1f to your computer and use it in GitHub Desktop.
Save rickyngan/b2ce9b88594e1f88ac1599d250803c1f to your computer and use it in GitHub Desktop.
UISearchBar extension
import UIKit
extension UISearchBar {
var textField: UITextField? {
return self.value(forKey: "_searchField") as? UITextField
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment