CNContactPickerViewController から誕生日ラベルを選択する方法をすばやく知っていますが、Objective-c で少し混乱しています
ここで私は次のようなコードを使用します:In Objective-c
「didSelectContactProperty」メソッドで誕生日ラベルを選択するにはどうすればよいですか。助けてください..
-(void)presentContacts {
CNContactPickerViewController *picker = [[CNContactPickerViewController alloc] init];
NSArray *propertyKeys = @[CNContactBirthdayKey, CNContactPhoneNumbersKey, CNContactGivenNameKey, CNContactFamilyNameKey, CNContactOrganizationNameKey];
NSPredicate *enablePredicate = [NSPredicate predicateWithFormat:@"birthday != nil"];
picker.displayedPropertyKeys = propertyKeys;
picker.predicateForEnablingContact = enablePredicate;
picker.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
}
- (void)contactPickerDidCancel: (CNContactPickerViewController *) picker {
NSLog(@"didCancel");
}
- (void)contactPicker: (CNContactPickerViewController *) picker didSelectContact: (CNContact *)contact{
NSLog(@"didSelectContact");
}
- (void)contactPicker: (CNContactPickerViewController *) picker didSelectContactProperty: (CNContactProperty *)contactProperty{
NSLog(@"didSelectProperty");
}