| Conforms to | |
| Framework | /System/Library/Frameworks/AddressBookUI.framework |
| Availability | Available in iPhone OS 2.0 and later. |
| Declared in | ABUnknownPersonViewController.h |
The ABUnknownPersonViewControllerDelegate protocol describes the interface ABUnknownPersonViewController delegates must adopt to respond to unknown-person view user events.
Sent when the user finishes creating a contact or adding the displayed person properties to an existing contact. (required)
- (void)unknownPersonViewController:(ABUnknownPersonViewController *)unknownPersonView didResolveToPerson:(ABRecordRef)person
The unknown-person view controller that sent the message.
The receiver must dismiss this view controller.
The contact the user created or to which they added information. This record is saved in the Address Book database.
NULL when the user cancelled the interaction.
ABUnknownPersonViewController.hSent when the user selects a property value of the person displayed in a person view controller.
- (BOOL)unknownPersonViewController:(ABUnknownPersonViewController *)personViewController shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier
The sender.
The person unknownPersonViewController is displaying.
The property who’s value the user selected.
The identifier for the value the user selected if property is a multivalue property; otherwise, kABMultiValueInvalidIdentifier.
YES if unknownPersonViewController should perform its default action. Your application may quit as a result of this action.
NO: if unknownPersonViewController should do nothing. The delegate may perform custom action processing.
ABUnknownPersonViewController.hLast updated: 2009-05-26