Created
December 14, 2015 22:03
-
-
Save joshavant/a40245c5447b2e0cdbc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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