使用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将为我提供联系人铃声的字符串值。这就是我需要的,只是为了阅读字符串。
由于