Skip to content

Instantly share code, notes, and snippets.

@sendoa
Created December 12, 2012 23:04
Show Gist options
  • Save sendoa/4272498 to your computer and use it in GitHub Desktop.
Save sendoa/4272498 to your computer and use it in GitHub Desktop.
Eliminar elementos duplicados de un NSArray
// Eliminar elementos duplicados en un NSArray
NSArray *cleanedArray = [[NSSet setWithArray:dates] allObjects];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment