プログラムで uitextField サブビューで検索バーを使用しています。以下のような画像が得られます。
ここでは、上の行に暗い色があります。プレーンな細い線を避けるにはどうすればよいですか?
私はこのコードを使用します:
searchbar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, (self.view.frame.size.height*10)/100, self.view.frame.size.width, (self.view.frame.size.height*13)/100)];
searchbar.delegate=self;
for (searchBarSubview in [searchbar subviews]) {
if ([searchBarSubview conformsToProtocol:@protocol(UITextInputTraits)] ) {
@try {
[[searchbar.subviews objectAtIndex:0] removeFromSuperview];
searchbar.backgroundColor=[UIColor clearColor];
}
@catch (NSException * e) {
// ignore exception
}
}
}