iOS - 输入框有值时才能点击键盘上的returnkey(enablesReturnKeyAutomatically属性)

enablesReturnKeyAutomatically属性

UITextfield、UITextView的enablesReturnKeyAutomatically属性默认是关闭的,即textField.enablesReturnKeyAutomatically = NO;
这样当输入框中没有值时,也可以点击键盘上的returnkey。

而UISearchBar的enablesReturnKeyAutomatically属性默认是开启的,即textField.enablesReturnKeyAutomatically = YES;
这样当输入框中没有值时,不可以点击键盘上的returnkey,可以手动关闭。

你可能感兴趣的:(iOS - 输入框有值时才能点击键盘上的returnkey(enablesReturnKeyAutomatically属性))