Merge pull request #550 from marmelroy/issue-549

Access to underlying UITextView for more configuration options.
This commit is contained in:
appleguy
2015-07-30 22:04:30 -07:00
2 changed files with 16 additions and 1 deletions

View File

@@ -19,6 +19,12 @@
#pragma mark - Configuration
/**
@abstract Access to underlying UITextView for more configuration options.
@warning This property should only be used on the main thread and should not be accessed before the editable text node's view is created.
*/
@property (nonatomic, readonly, strong) UITextView *textView;
//! @abstract The attributes to apply to new text being entered by the user.
@property (nonatomic, readwrite, strong) NSDictionary *typingAttributes;