I'm struggling with this for a while now. Have searched everywhere but the solution provided only works with objective-c. Which consists in
UITextField *txt = [_searchBar valueForKey:@"_searchField"];
Although some might say that this is protected API and Apple might refuse an app with such code.
So, now I've tried so many ways to work this out and it's not working at all. My code is this:
searchBar = UISearchBar(frame: CGRectMake(0, 0, 320.0, 30.0))
searchBar.autoresizingMask = UIViewAutoresizing.FlexibleWidth
searchBar.searchBarStyle = UISearchBarStyle.Minimal
searchBar.layer.cornerRadius = 15
searchBar.delegate = self
searchBar.backgroundColor = UIColor.whiteColor()
if floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1{
// Load resources for iOS 6.1 or earlier
searchBar.placeholder = "Search";
} else {
// The following "hack" (if we can call that) breaks the UI for different size devices.
// Load resources for iOS 7 or later
searchBar.placeholder = "Search ";
}
This gives me the bizarre result:
While what I want is just the textfield inside the UISearchBar to have a white background and the SearchBar itself have a cornerRadius of, say, 15.
How can I do this?
Thanks so much in advance