Как я могу добавить UISerachBar в UIToolBar? - PullRequest
2 голосов
/ 05 мая 2011

Я сейчас пытаюсь что-то вроде этого:

UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
UIViewController *searchBarContainer = [[UIViewController alloc] initWithFrame:searchBar.frame];
[searchBarContainer addSubview:searchBar];

NSArray* buttons = [NSArray arrayWithObjects:fixed, searchBarContainer, nil];

[detailToolbar setItems:buttons animated:NO];

1 Ответ

8 голосов
/ 06 мая 2011
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
UIBarButtonItem  * searchBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:searchBar];

UIToolbar  * searchToolbar = [[UIToolbar alloc]initWithFrame:CGRectMake(0,0+20,[self view].bounds.size.width,32)];

[searchToolbar setItems:[NSArray arrayWithObjects:searchBarButtonItem,homeButtonItem, nil] animated:YES];
...