Skip to content

Commit 7890a84

Browse files
author
Ignacio Romero Zurbuchen
authored
Merge pull request slackhq#561 from slackhq/expose_autocomplete
Exposes required properties for the subclasses
2 parents d872bc3 + ff96c2a commit 7890a84

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)