UISearchBar не выглядит должным образом - PullRequest
1 голос
/ 22 ноября 2011

Не могу исправить проблему с subj на iPad с iOS 5. Я создаю UISearchBar как обычно:

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]; 

, но он выглядит неправильно.

enter image description here

Стекло лупы немного порезано.В моем коде нет категорий UITextField textRectForBounds, bounds и т. Д.

Заранее спасибо

...