UITableView内にあるUISearchBarをカスタマイズすることは可能ですか?キャンセルボタンを削除して、キャンセルの代わりに他の2つのボタンを配置したいと思います。
1 に答える
0
UISearchBar is not very customizable. You can see in its documentation the kinds of things which you can customize. You can hide the cancel button, but you can't add your own arbitrary buttons.
You might want to replace it with a UITextField and your own buttons, which will give you lots of flexibility, but will require more work to re-implement the UISearchBar's built-in behaviour.
于 2013-01-10T21:51:38.433 に答える