ios – 使用Contacts框架获取本地化的电话标签

前端之家收集整理的这篇文章主要介绍了ios – 使用Contacts框架获取本地化的电话标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用CNContact.My获取本地化的电话标签值到目前为止:
NSError *error = nil;

    CNContactFetchRequest *fetchRequest =[[CNContactFetchRequest alloc] initWithKeysToFetch:keysToFetch];

    [addressBook enumerateContactsWithFetchRequest:fetchRequest error:&error usingBlock:^(CNContact * _Nonnull contact,BOOL * _Nonnull stop) {

       CNLabeledValue *phoneNumberValue = contact.phoneNumbers.firstObject;

       NSString *label = phoneNumberValue.label;
       NSLog(@"Phone Label: %@",label); //Logs value like _$!<Home>!$_

       CNPhoneNumber *phoneNumber = phoneNumberValue.value;
       NSString *phoneNumberString = phoneNumber.stringValue;

       NSLog(@"Phone No: %@",phoneNumberString);
    }];

问题是手机标签返回的原始值如_ $!< Home>!$_,_ $!< Mobile>!$_.但我需要像Home,Mobile这样的纯文本.有什么办法可以使用Contact框架获取本地化值.我不想使用Addressbook,因为它在iOS 9中已被弃用.

解决方法

使用CNLabeledValues类方法localizedStringForLabel:并传递标签

例:

CNLabeledValue *phoneNumberValue = contact.phoneNumbers.firstObject;
   NSString *label = phoneNumberValue.label;
   label = [CNLabeledValue localizedStringForLabel:label];
   NSLog(@"Phone Label: %@",label); //Logs value like _$!<Home>!$_
原文链接:https://www.f2er.com/iOS/335426.html

猜你在找的iOS相关文章