UITextField に Focus が当たった時に、文字を選択済みの状態にする
UITextField の文字を選択済みにする
Focus 当たったら下記の画像のような状態になっててほしい。
textField.selectAll
selectAll
というメソッドで実現できる。
引数に self
を渡すと、コピーとかカットの選択肢が表示される。
textField.selectAll(nil)
textField.selectAll(self)
2 回に 1 回しか選択済みにならない問題
textField に Focus が当たった時に選択済みにするために、 UITextFieldDelegate
を使い下記のように書いていた。
func textFieldDidBeginEditing(_ textField: UITextField) {
textField.selectAll(nil)
}
ただし、この書き方だと 2 回に 1 回しか選択済みになってくれない。
その時は、下記のように遅延させて selectAll すると上手くいく。
func textFieldDidBeginEditing(_ textField: UITextField) {
textField.perform(#selector(selectAll(_:)), with: nil, afterDelay: 0.1)
// 選択肢出したい場合はこっち
// textField.perform(#selector(selectAll(_:)), with: self, afterDelay: 0.1)
}
本当なら dispatch 的なので書いたほうが良いかもしれないが、今のところ afterDelay で動作には問題無い。
参考
iphone - selectall uitextfield does not always select all - Stack Overflow
Author And Source
この問題について(UITextField に Focus が当たった時に、文字を選択済みの状態にする), 我々は、より多くの情報をここで見つけました https://qiita.com/star__hoshi/items/a17eb68685bad154f654著者帰属:元の著者の情報は、元の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 .