Can't fix an issue with the subj on iPad with iOS 5. I create UISearchBar as usual:

UISearchBar *tempSearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, fb.height-12, 309, 44)];
tempSearchBar.delegate = self;
tempSearchBar.autoresizingMask = UIViewAutoresizingNone;
self.searchBar = tempSearchBar;
self.searchBar.placeholder = @"Search";
[self.view addSubview:tempSearchBar]; 

but it doesn't look right.

enter image description here

The magnifuer glass is cut a little. I don't have UITextField categories textRectForBounds, bounds etc in my code.

Thanks in advance

link|improve this question

74% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.