以下は私のコードです:
(init a ABPersonViewController:)
- (id)initWithPerson:(ABRecordRef)person
{
self = [super init];
if (self) {
self.addressBook = ContactsGetAddressBook();
self.displayedPerson = person;
self.allowsEditing = YES;
self.editing = YES;
}
}
キャンセルボタンをタッチしても、
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
また
- (void)setEditing:(BOOL)editing
しかし、完了ボタンが呼び出されました。
キャンセルボタンをタッチすると、PersonViewControllerを直接閉じて、 Info Interface をスキップします。
キャンセルボタンのタッチイベントを取得したい(編集モード)。