作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我们可以将 UITextField 的这个属性设置为“Send”、“Search”、“Go”等:
@property(nonatomic) UIReturnKeyType returnKeyType
但是在使用 UITextField 时设置它根本不会改变。
我想要这种行为:当 UITextField 为空时,让 returnKeyType 为“Return”,否则让 returnKeyType 为“Send”。
最佳答案
通常在显示键盘时检查 returnKeyType
和其他属性,但不会监视以后的更新。尝试在更改 returnKeyType
后在文本字段上调用 reloadInputViews
,这应该会指示它刷新键盘设置。
关于iphone - 我可以动态更改 UITextField 的属性 UIReturnKeyType 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5958427/
当用户在我的 UITextView 中输入字符串时,我试图将返回键从 default 更改为 done。我试图在 textViewDidChange(_ textView: UITextView) 中
我们可以将 UITextField 的这个属性设置为“Send”、“Search”、“Go”等: @property(nonatomic) UIReturnKeyType returnKeyType
当用户按下小键盘上的下一步时,我想从当前的 UITextField 移动到下一个 UITextField,UIReturnKeyType 设置为 UIReturnKeyType.Next 这是我设置
我是一名优秀的程序员,十分优秀!