VENTokenField
is the recipients token field that is used in the Venmo compose screen.
The easiest way to get started is to use CocoaPods. Just add the following line to your Podfile:
pod 'VENTokenField', '~>1.0.0'
If you've ever used a UITableView
, using VENTokenField
should be a breeze.
Similar to UITableView
, VENTokenField
has provides protocols: VENTokenFieldDelegate
and VENTokenFieldDataSource
.
This protocol notifies you when things happen in the token field that you might want to know about.
tokenField:didEnterText:
is called when a user hits the return key on the input field.tokenField:didDeleteTokenAtIndex:
is called when a user deletes a token at a particular index.tokenField:didChangeText:
is called when a user changes the text in the input field.tokenFieldDidBeginEditing:
is called when the input field becomes first responder.
We'd love to see your ideas for improving this library! The best way to contribute is by submitting a pull request. We'll do our best to respond to your patch as soon as possible. You can also submit a new Github issue if you find bugs or have questions.
Please make sure to follow our general coding style and add test coverage for new features!