Skip to content

Commit ff96c2a

Browse files
Jason WinnJason Winn
Jason Winn
authored and
Jason Winn
committed
Expose required properties for the subclass, related to integrating new code with existing autocomplete search
1 parent d872bc3 commit ff96c2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/SLKTextViewController.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,13 +418,13 @@ NS_CLASS_AVAILABLE_IOS(7_0) @interface SLKTextViewController : UIViewController
418418
@property (nonatomic, readonly, getter = isAutoCompleting) BOOL autoCompleting;
419419

420420
/** The recently found prefix symbol used as prefix for autocompletion mode. */
421-
@property (nonatomic, readonly, copy) NSString *_Nullable foundPrefix;
421+
@property (nonatomic, copy) NSString *_Nullable foundPrefix;
422422

423423
/** The range of the found prefix in the text view content. */
424-
@property (nonatomic, readonly) NSRange foundPrefixRange;
424+
@property (nonatomic) NSRange foundPrefixRange;
425425

426426
/** The recently found word at the text view's caret position. */
427-
@property (nonatomic, readonly, copy) NSString *_Nullable foundWord;
427+
@property (nonatomic, copy) NSString *_Nullable foundWord;
428428

429429
/** An array containing all the registered prefix strings for autocompletion. */
430430
@property (nonatomic, readonly, copy) NSSet <NSString *> *_Nullable registeredPrefixes;

0 commit comments

Comments
 (0)