ABPersonViewController在编辑模式下更改取消按钮的选择器

时间:2013-08-09 07:34:18

标签: iphone ios objective-c abpersonviewcontroller

以下是我的代码:

(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 跳过信息界面

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

0 个答案:

没有答案