0

ユーザーがプログラムで連絡先を編集できるようにする必要があるアプリを開発しています。

私はそれについてググった

ABPersonViewControllerが使用されることがわかりました。私はそれをどのように実装するかを見つけることができません。

iPhoneOS用のアドレスブックプログラミングガイドも私にはうまくいきませんでした。

それを行う方法を教えていただけますか。

事前にThnx

4

1 に答える 1

0

ついに私は自分で解決策を見つけなければなりません

はい、これ

-(IBAction)showPicker:(id) sender{
    ABAddressBookRef addressBook = ABAddressBookCreate();
    CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);  
    ABRecordRef person = CFArrayGetValueAtIndex(allPeople,0);   
    ABPersonViewController *personController = [[ABPersonViewController alloc] init];
    personController.displayedPerson = person;
    personController.addressBook = addressBook;
    personController.allowsEditing = YES;
    personController.personViewDelegate = self;
    UINavigationController *contactNavController = [[UINavigationController alloc] initWithRootViewController:personController];
    [personController release]; 
    CFRelease(allPeople);
    CFRelease(person);

    [self presentModalViewController:contactNavController animated:YES];    
}


-(void)personViewControllerDidCancel:(ABPersonViewController *)peoplePicker
{
    [self dismissModalViewControllerAnimated:YES];
}

-(BOOL)personViewController:(ABPersonViewController *)peoplePicker shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID) property identifier:(ABMultiValueIdentifier) identifier
{
    return YES;
}
于 2009-11-18T05:55:07.670 に答える