iOS - 从联系人列表中检索电话号码;当没有数字可用时,应用程序崩溃

时间:2013-02-11 08:19:07

标签: ios cocoa-touch contacts

我将电话号码导入我的应用,但是当我点按没有电话号码的联系人时,我的应用就崩溃了。

我的代码:

if (ABMultiValueGetCount(phoneNumbers) > 0) {
    phone = (__bridge_transfer NSString*)
    ABMultiValueCopyValueAtIndex(phoneNumbers, 0);
} else {
    phone = @"[None]";
}

有什么建议吗?

0 个答案:

没有答案