0

下面是我的代码:

(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

我希望获得取消按钮的触摸事件(在编辑模式下)。

4

0 回答 0