次の結果を取得するために UISearchBar の外観を変更しようとしています
カスタム検索バー http://imageshack.com/a/img194/3835/jhl7.png
UIAppearance メソッドと UISearchBarBackground を削除してみましたが、テキスト フィールドの境界線を削除できないようです。
私が得た最良の結果は次のとおりです。
問題は虫眼鏡ではなく、境界線です:)
次の結果を取得するために UISearchBar の外観を変更しようとしています
カスタム検索バー http://imageshack.com/a/img194/3835/jhl7.png
UIAppearance メソッドと UISearchBarBackground を削除してみましたが、テキスト フィールドの境界線を削除できないようです。
私が得た最良の結果は次のとおりです。
問題は虫眼鏡ではなく、境界線です:)
検索バーに明確な色を設定してみてください。
[[UISearchBar appearance] setTintColor:[UIColor clearColor]];
または試してください:
UIImage *searchBg = [UIImage imageNamed:@"Search_Background.png"];
searchBg = [searchBg stretchableImageWithLeftCapWidth:10 topCapHeight:10]; //experiment with values
[[UISearchBar appearance] setSearchFieldBackgroundImage: [[UIImage imageNamed: @"background-search"];