答案 0 :(得分:1)
是在属性检查器中,您可以根据需要找到所有属性并在搜索栏中进行更改
OR
您可以为自己的应用
创建自定义UISearchBar
//Custom search bar code
UISearchBar *search = [[UISearchBar alloc] init];
search.frame = CGRectMake(0, 200, 300,45);
search.delegate = self;
search.showsBookmarkButton = NO;
search.placeholder = @"Search/Select a Creative Service";
search.barTintColor = [UIColor whiteColor];
[self.view addSubview:search];