iOS9本机拨号程序在调用shouldPerformDefaultActionForPerson之前显示

时间:2015-10-01 12:08:19

标签: ios iphone uitableview ios9 abpersonviewcontroller

升级到iOS9后,我发现我的应用程序中出现了不同的行为。我有一个显示手机设备联系人的视图。

我的代码如下:

if (... == YES)
    {
        ABRecordSetValue(aContact, kABPersonEmailProperty, email, &anError);
        if (anError == NULL)
        {
            ABUnknownPersonViewController *picker = [[ABUnknownPersonViewController alloc] init];
            picker.unknownPersonViewDelegate = self;
            picker.displayedPerson = aContact;
            picker.allowsAddingToAddressBook = YES;
            picker.allowsActions = YES;
            picker.alternateName = @"John Appleseed";
            picker.title = @"John Appleseed";
            picker.message = @"Company, Inc";

            [self.navigationController pushViewController:picker animated:YES];
        }

然后我使用委托做出一些决定

- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person 
                                property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier
    {
        //make decisions 
        return YES or NO;
    }

用户点按电话号码。

在IOS8中 >>代码到达shouldContinueAfterSelectingPerson然后出现本机拨号器

在IOS9中 >>原始拨号程序出现在代码到达之前,应该继续选择AfterClectonPerson。

有什么方法可以解决吗?

1 个答案:

答案 0 :(得分:2)

我面临同样的问题。我注意到的是,如果你在委托方法中进行某些计算(显然需要一些时间来进行计算)并且调用本机拨号程序。

因此,为了避免这个问题,我立即从这个委托方法返回NO并在另一个线程中执行我的计算。这当然是一种解决方法,希望在iOS的下一个版本中修复该问题。