Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.

Exposes required properties for the subclasses #561

Merged
merged 1 commit into from
Jan 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Source/SLKTextViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,13 +418,13 @@ NS_CLASS_AVAILABLE_IOS(7_0) @interface SLKTextViewController : UIViewController
@property (nonatomic, readonly, getter = isAutoCompleting) BOOL autoCompleting;

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

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

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

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