【Swift】UISearchBarのtextField内にボタンを設置する
1794 ワード
以下の画像のようにUISearchBar、textField内の一番右に任意のボタンを追加する方法。
ここには本来ブックマークボタンが表示されますので、このブックマークボタンを表示させて、任意の画像に置き換えるという形を取ります。
コード
// ブックマークボタンを表示させる
searchController.searchBar.showsBookmarkButton = true
// ブックマークボタンに任意の画像を設定
searchController.searchBar.setImage(UIImage(named:"wood.ico"), for: .bookmark, state: .normal)
func searchBarBookmarkButtonClicked(_ searchBar: UISearchBar) {
print("このボタンを押した時の処理")
}
Author And Source
この問題について(【Swift】UISearchBarのtextField内にボタンを設置する), 我々は、より多くの情報をここで見つけました https://qiita.com/Simmon/items/19e1fc1846afd843e1d7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .