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をプログラムで下の画像のように似せる可能性はありますか?
私は先に進む考えがありません、plsは私を助けてくれます!
背景画像を簡単に使用できます。
[[UISearchBar appearance] setSearchFieldBackgroundImage:[UIImage imageNamed:@"bgimage.png"]forState:UIControlStateNormal];
または、このスレッドで説明されているように、UISearchBar をサブクラス化し、layoutSubviews メソッドをオーバーライドすることもできます。
iPhoneアプリ開発における検索バーのカスタマイズ