0

プログラムで 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
        }
    }
}
4

0 に答える 0