Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリでは、addressbookuiを使用して連絡先の詳細をインポートします。メールまたは携帯電話番号が空の場合、アプリがクラッシュします。
メールの場合はこれを試してください:
ABMutableMultiValueRef eMail = ABRecordCopyValue(ref, kABPersonEmailProperty); if(ABMultiValueGetCount(eMail) > 0) { NSString *personEmail = (NSString *)ABMultiValueCopyValueAtIndex(eMail, 0); }