使用目标c从ipad的联系方式(contact details from ipad using ob

2019-11-02 08:07发布

如何从iPad上获得的详细联系方式和我的应用程序中使用它。 我使用下面的代码,并获得来自模拟器的细节。 不过,虽然在iPad上运行我没有得到接触式图像,电子邮件等。我得到正确的电话号码。

ABAddressBookRef addressBook = ABAddressBookCreate();

// Get all contacts in the addressbook
NSArray *allPeople = (__bridge NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook);

for (id person in allPeople) {
    // Get all phone numbers of a contact
    ABMultiValueRef phoneNumbers = ABRecordCopyValue((__bridge ABRecordRef)(person), kABPersonPhoneProperty);
    ABMultiValueRef emailaddress = ABRecordCopyValue((__bridge ABRecordRef)(person), kABPersonEmailProperty);


    // If the contact has multiple phone numbers, iterate on each of them
    for (int i = 0; i < ABMultiValueGetCount(phoneNumbers); i++) {
        NSString *phone = (__bridge_transfer NSString*)ABMultiValueCopyValueAtIndex(phoneNumbers, i);



        // Remove all formatting symbols that might be in both phone number being compared
        NSCharacterSet *toExclude = [NSCharacterSet characterSetWithCharactersInString:@"/.()- +"];
        phone = [[phone componentsSeparatedByCharactersInSet:toExclude] componentsJoinedByString: @""];


        if ([phone isEqualToString:number]) {

            NSData *contactImageData = (__bridge NSData*)ABPersonCopyImageData((__bridge ABRecordRef)(person));
            NSString *mail = (__bridge_transfer NSString*)ABMultiValueCopyValueAtIndex(emailaddress, i);
            NSLog(@"%@",mail);
            if(mail)
            {
                hasEmail=TRUE;
                NSLog(@"true");
            }
            else{
                hasEmail=FALSE;
                NSLog(@"false");
            }

            ContactImage = [[UIImage alloc] initWithData:contactImageData];
           // [conImage setImage:ContactImage];

            break;
            break;
        }
    }
}
if(ContactImage)
{
    [conImage setImage:ContactImage];
}
else{

    NSLog(@"no image");
}

我需要的图像在iPad上运行时

Answer 1:

您可以实现此代码到ViewDidLoad的方法。

 ABAddressBookRef addressBook;
 if ([self isABAddressBookCreateWithOptionsAvailable]) {
    CFErrorRef error = nil;
    addressBook = ABAddressBookCreateWithOptions(NULL,&error);
    ABAddressBookRequestAccessWithCompletion(addressBook, ^(bool granted, CFErrorRef error) {
        // callback can occur in background, address book must be accessed on thread it was created on
        dispatch_async(dispatch_get_main_queue(), ^{
            if (error) {

            } else if (!granted) {


            } else {
                // access granted
                [self GetAddressBook];


            }
        });
    });

} else {
    // iOS 4/5

    [self GetAddressBook];
 }

方法获取联系人: -

-(void)GetAddressBook
{
    Contacts = [[NSMutableArray alloc]init];

    if (ABAddressBookCreateWithOptions) {

    @try {

        ABAddressBookRef addressBook = ABAddressBookCreate();
        // NSArray *people = (NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook);
        if (!addressBook) {
            NSLog(@"opening address book");
        }
        CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);
        CFIndex nPeople = ABAddressBookGetPersonCount(addressBook);

        NSLog(@"opening address book ==%ld",nPeople);

        for (int i=0;i < nPeople;i++) {

            NSMutableDictionary *dOfPerson=[NSMutableDictionary dictionary];
            ABRecordRef ref = CFArrayGetValueAtIndex(allPeople,i);
            NSString *Contact;
            ABMultiValueRef phones =(__bridge ABMultiValueRef)((__bridge NSString*)ABRecordCopyValue(ref, kABPersonPhoneProperty));
            CFStringRef firstName, lastName;
            NSMutableArray *array = [[NSMutableArray alloc]init];
            NSString *email;
            firstName = ABRecordCopyValue(ref, kABPersonFirstNameProperty);
            lastName  = ABRecordCopyValue(ref, kABPersonLastNameProperty);
            ABMultiValueRef multiValueRef = ABRecordCopyValue(ref, kABPersonEmailProperty);
            array = [(__bridge NSMutableArray *)ABMultiValueCopyArrayOfAllValues(multiValueRef) mutableCopy];
            email = ([array count] > 0) ? array[0] : @"";

            if(firstName)
            {
                Contact = [NSString stringWithFormat:@"%@", firstName];
                if(lastName)
                    Contact = [NSString stringWithFormat:@"%@ %@",firstName,lastName];
            }
            [dOfPerson setObject:Contact forKey:@"name"];
            [dOfPerson setObject:[NSString stringWithFormat:@"%d", i] forKey:@"id"];
            [dOfPerson setObject:[NSString stringWithFormat:@"%@",@""] forKey:@"found"];
            [dOfPerson setObject:email forKey:@"email"];

            NSString* mobileLabel;
            for(CFIndex j = 0; j< ABMultiValueGetCount(phones); j++)
            {
                mobileLabel = (__bridge NSString*)ABMultiValueCopyLabelAtIndex(phones, j);
                if([mobileLabel isEqualToString:(NSString *)kABPersonPhoneMobileLabel])
                {
                    [dOfPerson setObject:(__bridge NSString*)ABMultiValueCopyValueAtIndex(phones, j) forKey:@"Phone"];
                }
                else if ([mobileLabel isEqualToString:(NSString*)kABPersonPhoneIPhoneLabel])
                {
                    [dOfPerson setObject:(__bridge NSString*)ABMultiValueCopyValueAtIndex(phones, j) forKey:@"Phone"];
                    break ;
                }
            }
            [Contacts addObject:dOfPerson];
        }
    }
    @catch (NSException * e) {
        NSLog(@"Exception: %@", e);          
    }
    dispatch_async(dispatch_get_main_queue(), ^{           

    });

    NSLog(@"%@",Contacts);
    if([Contacts count]>0)
    {
        NSSortDescriptor *sort = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];
        [Contacts sortUsingDescriptors:[NSArray arrayWithObject:sort]];
        [Tableview reloadData];
    }
    else
    {

    }
}
else
{
    [self GetAddressBook];
}
}

这里联系是一个NSMutableArray和所有的数据在被显示UITableView 。 该数据包括名字,姓氏,电话号码和电子邮件地址。 希望能帮助到你。



文章来源: contact details from ipad using objective-c