通过SearchBar提示文本颜色

时间:2012-02-11 11:08:06

标签: iphone xcode colors prompt searchbar

我希望在提示栏上有一个文本在SearchBar上。我使用XIB设置搜索栏。 而且由于我希望SearchBar的颜色比默认颜色更深,因此文本似乎不适应颜色的变化而且太暗而不可读。在xib中没有设置来改变我能看到的文本颜色。 有谁知道解决这个问题? 不是很重要,但会很好,因为它看起来更好,我想要的颜色。

1 个答案:

答案 0 :(得分:1)

searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
searchBar.delegate = self;
searchBar.placeholder = @"Search";
searchBar.text = @"";
searchBar.autocorrectionType = UITextAutocorrectionTypeNo;
searchBar.backgroundColor = [UIColor colorWithRed:127/255.0f green:163/255.0f blue: alpha:1.0f];