簡體   English   中英

獲取\\ U00a,同時從聯系人iOS獲取多個電話號碼

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

我正在嘗試從設備的聯系人中獲取多個電話號碼。

如果聯系人只有一個號碼,則工作正常,但是當他們有多個號碼時,它為f *****(這意味着我在兩個號碼之間得到“ \\ U00a”)。

我嘗試了所有我能想到的解決方案,但仍然無法正常工作。

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);
}

您可以使用聯系人框架。 希望這將為您提供直接的聯系解決方案。

#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