kABPersonFirstNameProperty… trowing EXC_BAD_ACCESS
问题 Im reading the address book contacts... everything goes well until I test a contact with no First Name ( Since I can create a contact with just an email or a phone or wathever....). The code (reduced) is this: - (NSMutableArray *) getContactsInfo { NSMutableArray *contactsList = [[NSMutableArray alloc] init]; localAddressBook = ABAddressBookCreate(); int contactsLength = (int)ABAddressBookGetPersonCount(localAddressBook); if (contactsLength < 1) return nil; for(int currentContact=1;