Skip to content

Instantly share code, notes, and snippets.

@austinzheng
Last active August 29, 2015 14:07
Show Gist options
  • Save austinzheng/45b7e28ee3614e7dd7a5 to your computer and use it in GitHub Desktop.
Save austinzheng/45b7e28ee3614e7dd7a5 to your computer and use it in GitHub Desktop.
Mentions plug-in setup example
// Set up mentions plug-in
- (void)viewDidLoad {
[super viewDidLoad];
HKWMentionsChooserPositionMode mode = HKWMentionsChooserPositionModeEnclosedTop;
NSCharacterSet *controlCharacters = [NSCharacterSet characterSetWithCharactersInString:@"@+"];
HKWMentionsPlugin *mentionsPlugin = [HKWMentionsPlugin mentionsPluginWithChooserMode:mode
controlCharacters:controlCharacters
searchLength:3];
self.plugin = mentionsPlugin;
mentionsPlugin.delegate = [MentionsManager sharedInstance];
self.textView.controlFlowPlugin = mentionsPlugin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment