私はUISearchBarをUINavigationバーに追加しています(これはストーリーボードベースのアプリです):
//Setup the search bar.
searchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0.0f, 0.0f, 50.0f, 44.0f)];
self.tabBarController.navigationItem.titleView = searchBar;
searchBar.delegate = self;
controller = [[UISearchDisplayController alloc]initWithSearchBar:self.searchBar contentsController:self];
controller.searchResultsDataSource = self;
controller.searchResultsDelegate = self;
検索バーの幅と高さと位置を何に設定しても、検索バーの高さ/幅は変わりません。常に同じ幅と高さです。
誰でも変更方法を提案できますか?