Skip to content

Instantly share code, notes, and snippets.

@zorn
Created February 3, 2011 22:20
Show Gist options
  • Save zorn/810350 to your computer and use it in GitHub Desktop.
Save zorn/810350 to your computer and use it in GitHub Desktop.
- (NSString *)tokenField:(NSTokenField *)tokenField editingStringForRepresentedObject:(id)representedObject
{
if ([representedObject isKindOfClass:[NSString class]])
{
return representedObject;
}
else
{
return nil; // nil disallows editing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment