UISearchBar placeholder missing
ashchan opened this issue · 2 comments
ashchan commented
LTBouncyPlaceholder is awesome, but it seems to break UISearchBar
. When it's used in a project the search bar's placeholder is not showing.
lexrus commented
It's unsafe to swizzling drawPlaceholderInRect() of UITextField class. The text field in UISearchBar whose class name is UISearchBarTextField is a subclass of UITextField.
I guess the best practice to use swizzling is not to use it under most circumstances.