读取分配给iOS上的联系人的铃声字符串

时间:2011-07-20 14:19:58

标签: iphone

使用iOS sdk 4.3

为了确定联系人在iOS上的电话号码,可以使用下面的代码

    ABMutableMultiValueRef multi = ABRecordCopyValue(person, kABPersonPhoneProperty);

    CFIndex i = ABMultiValueGetIndexForIdentifier (multi,identifier);

    phoneNumberLabel = (CFStringRef)ABMultiValueCopyLabelAtIndex(multi, i);
    phoneNumber      = (NSMutableString* )ABMultiValueCopyValueAtIndex(multi, i); 

然而,什么属性类型,即kABPersonxxxProperty将为我提供联系人铃声的字符串值。这就是我需要的,只是为了阅读字符串。

由于

0 个答案:

没有答案