Add support for configuring on ASEditableTextNode.

This commit is contained in:
Connor Montgomery
2015-07-30 15:19:00 -04:00
parent 5482213e2e
commit ca5e9e7dc3
3 changed files with 15 additions and 0 deletions

View File

@@ -50,6 +50,11 @@
//! @abstract The text input mode used by the receiver's keyboard, if it is visible. This value is undefined if the receiver is not the first responder.
@property (nonatomic, readonly) UITextInputMode *textInputMode;
/*
@abstract The returnKeyType of the keyboard. This value defaults to UIReturnKeyDefault.
*/
@property (nonatomic, readwrite) UIReturnKeyType returnKeyType;
/**
@abstract Indicates whether the receiver's text view is the first responder, and thus has the keyboard visible and is prepared for editing by the user.
@result YES if the receiver's text view is the first-responder; NO otherwise.