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.
请帮我解决这个问题。
在 iOS7 中,我将 UITextField 对齐设置为正确。但是当我在文本字段中输入空格作为第一个字符时。光标会自动移动到文本字段的左侧,就像文本字段是左对齐的一样。
iOS5、iOS6不会出现这个问题。
我假设您不想让用户输入空格作为第一个字符。如果这是真的,这个解决方案会奏效。
将 UITextField 的编辑更改事件连接到此方法。
- (void)removeSpace : (UITextField *)sender{ if ([sender.text isEqual: @" "]) { sender.text = @""; } }