Skip to content

Commit

Permalink
Add some custom delimiters to the sample project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Neeraj Baid committed May 9, 2015
1 parent c2e39c9 commit 964f4a2
Showing 1 changed file with 1 addition and 0 deletions.
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

2 comments on commit 964f4a2

@alonecuzzo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@neerajbaid Love this delimiters array. Any idea as to when it might get pushed to an official release?

@neerajbaid
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as in, you want to see these delimiters as default?

Please sign in to comment.