简体   繁体   English

获取\\ U00a,同时从联系人iOS获取多个电话号码

[英]Getting \U00a , While fetching multiple phone numbers from the contact iOS

I am trying to fetch multiple phone numbers from the contacts of device. 我正在尝试从设备的联系人中获取多个电话号码。

It's working fine if the contact have only one number, but it's f***** when they have multiple numbers (which means that I'm getting "\\U00a" in between the numbers). 如果联系人只有一个号码,则工作正常,但是当他们有多个号码时,它为f *****(这意味着我在两个号码之间得到“ \\ U00a”)。

I tried every solution I could think of, but it's still not working. 我尝试了所有我能想到的解决方案,但仍然无法正常工作。

ABMultiValueRef phonesRef = ABRecordCopyValue(person, kABPersonPhoneProperty);
for (int i = 0; i < ABMultiValueGetCount(phonesRef); i++) {
    CFStringRef currentPhoneLabel = ABMultiValueCopyLabelAtIndex(phonesRef, i);
    CFStringRef currentPhoneValue = ABMultiValueCopyValueAtIndex(phonesRef, i);

    if (CFStringCompare(currentPhoneLabel, kABPersonPhoneMobileLabel, 0) == kCFCompareEqualTo) {
        [contactInfoDict setObject:(__bridge NSString *) currentPhoneValue forKey:@"mobileNumber"];
    }

    else if (CFStringCompare(currentPhoneLabel, kABHomeLabel, 0) == kCFCompareEqualTo) {
        [contactInfoDict setObject:(__bridge NSString *) currentPhoneValue forKey:@"homeNumber"];
    }

    CFRelease(currentPhoneLabel);
    CFRelease(currentPhoneValue);
}

You can use Contacts Framework. 您可以使用联系人框架。 Hope this will provide you direct solution for contacts. 希望这将为您提供直接的联系解决方案。

#import <Contacts/Contacts.h>

-(void)getContact{
 CNContactStore *store = [[CNContactStore alloc] init];
[store requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError * _Nullable error) {

    // make sure the user granted us access

    if (!granted) {
        dispatch_async(dispatch_get_main_queue(), ^{
            // user didn't grant access;
            // so, again, tell user here why app needs permissions in order  to do it's job;
            // this is dispatched to the main queue because this request could be running on background thread
        });
        return;
    }

    // build array of contacts

    NSMutableArray *contacts = [NSMutableArray array];

    NSError *fetchError;
    CNContactFetchRequest *request = [[CNContactFetchRequest alloc] initWithKeysToFetch:@[CNContactEmailAddressesKey, CNContactPhoneNumbersKey, CNContactFamilyNameKey, CNContactGivenNameKey, CNContactPostalAddressesKey]];

    BOOL success = [store enumerateContactsWithFetchRequest:request error:&fetchError usingBlock:^(CNContact *contact, BOOL *stop) {
        [contacts addObject:contact];
    }];
    if (!success) {
        CTLog(@"error = %@", fetchError);
    }
    __weak typeof(self)weakSelf = self;
    [weakSelf parseContactWithContact:contacts];
}];

- (void)parseContactWithContact :(NSMutableArray* )contacts{
for (CNContact *contact in contacts)
{
    NSString * firstName =  contact.givenName;
    NSString * lastName =  contact.familyName;
    NSString *StrContactName = [NSString stringWithFormat:@"%@ %@",firstName,lastName];
    NSArray * arryPhone = [[contact.phoneNumbers valueForKey:@"value"] valueForKey:@"digits"];

    for (int i=0; i<[arryPhone count]; i++)
    {
        NSMutableDictionary *mDictValue = [[NSMutableDictionary alloc]init];
        [mDictValue setValue:firstName forKey:@"firstName"];
        [mDictValue setValue:lastName forKey:@"lastName"];
        [mDictValue setValue:StrContactName forKey:@"contactName"];
        [mDictValue setValue:[arryPhone objectAtIndex:i] forKey:@"Phone"];
        [arrayOfContacts addObject:mDictValue];
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM