Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom delimiters. #68

Merged
merged 7 commits into from
Jun 2, 2015
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add some custom delimiters to the sample project.
  • Loading branch information
Neeraj Baid committed May 9, 2015
commit 964f4a2fa97566c1db56af61bb1d97f20b010c3c
1 change: 1 addition & 0 deletions VENTokenFieldSample/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ - (void)viewDidLoad
self.tokenField.placeholderText = NSLocalizedString(@"Enter names here", nil);
self.tokenField.toLabelText = NSLocalizedString(@"Post to:", nil);
[self.tokenField setColorScheme:[UIColor colorWithRed:61/255.0f green:149/255.0f blue:206/255.0f alpha:1.0f]];
self.tokenField.delimiters = @[@",", @";"];
[self.tokenField becomeFirstResponder];
}

Expand Down