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];
希望它可以帮助你。