标签: ios cocoa-touch contacts
我将电话号码导入我的应用,但是当我点按没有电话号码的联系人时,我的应用就崩溃了。
我的代码:
if (ABMultiValueGetCount(phoneNumbers) > 0) { phone = (__bridge_transfer NSString*) ABMultiValueCopyValueAtIndex(phoneNumbers, 0); } else { phone = @"[None]"; }
有什么建议吗?