Skip to content

Instantly share code, notes, and snippets.

@arturlector
Last active March 8, 2016 22:17
Show Gist options
  • Save arturlector/82557661c44d81e85bc1 to your computer and use it in GitHub Desktop.
Save arturlector/82557661c44d81e85bc1 to your computer and use it in GitHub Desktop.
Чем отличается NSSet от NSArray?

Чем отличается NSSet от NSArray?

NSSet - хранит только уникальные объекты.

Какие операции происходят быстро в NSSet и какие в NSArray?

NSArray - добавление, удаление.

NSSet - использует hashvalues для поиска объекта, является неупорядоченным.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment