Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はUISearchBar自分のアプリでその外観を以下のように 使用しています
UISearchBar
私はUISearchBar色をクリアカラーにしたいのですが、次のことを試しました search.backgroundColor = [UIColor blackColor]; が、結果は同じです。どなたか助けてください。
search.backgroundColor = [UIColor blackColor];
UIColor *color = [UIColor redColor]; if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) { searchBar.barTintColor = color; //for iOS 7 } else { searchBar.tintColor = color; //for earlier than iOS 7 }