Ok, my second issue (see #1) is that
- (void)tokenField:(APTokenField *)tokenField didAddObject:(id)object;
only fires when a tag is selected from the UITableView. In my case, I want to add new tokens when the enter key is pressed e.g.
- (void)tokenFieldDidReturn:(APTokenField *)tokenField{
if(![trimString length]==0) {
// I would expect the following line to fire tokenField: didAddObject:
[tokenField addObject:tokenField.text];
}
}
Is this intentional?
Ok, my second issue (see #1) is that
only fires when a tag is selected from the UITableView. In my case, I want to add new tokens when the enter key is pressed e.g.
Is this intentional?