Skip to content

Instantly share code, notes, and snippets.

@joshavant
Created December 14, 2015 22:03
Show Gist options
  • Select an option

  • Save joshavant/a40245c5447b2e0cdbc7 to your computer and use it in GitHub Desktop.

Select an option

Save joshavant/a40245c5447b2e0cdbc7 to your computer and use it in GitHub Desktop.
// Broken on 9.2, Worked on 9.1
let keysToFetch = [CNContactGivenNameKey, CNContactFamilyNameKey, CNContactPhoneNumbersKey, CNContactEmailAddressesKey]
// Works on 9.2 + 9.1
let keysToFetch = [CNContactPhoneNumbersKey, CNContactEmailAddressesKey, CNContactFormatter.descriptorForRequiredKeysForStyle(.FullName)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment