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.
UITextField は、編集開始時にテキストを左に移動します。テキストを移動しないことはできますか? テキストは、編集前と同じ場所にある必要があります
これは、TextAlignment を Center または Right に設定したためです。
これを次のように変更します
[yourTextField setTextAlignment:NSTextAlignmentLeft];
お役に立てば幸いです。