Created
September 28, 2016 07:22
-
-
Save rickyngan/b2ce9b88594e1f88ac1599d250803c1f to your computer and use it in GitHub Desktop.
UISearchBar extension
This file contains 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
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