0

[UIPopoverController dealloc] reached while popover is still visible.当我尝试在我的 iPad 应用程序中显示弹出框控制器时,我遇到了(显然很常见)错误。

这里有很多问题,但我的问题似乎有所不同。首先,我通过父视图控制器上的一个属性来维护对弹出框控制器的强引用:

@property (strong, nonatomic) UIPopoverController* passcodePopover;

这是我实际呈现弹出框的代码(注意我使用的是第三方BZPasscodeViewController):

- (IBAction)adminConfig:(id)sender {
    self.passView = [[BZPasscodeViewController alloc] init];
    self.passView.title = @"Kiosk Administration";
    self.passView.text = @"Enter passcode:"; // TODO: localize
    self.passView.handler = ^(NSString *enteredPasscode, NSString **text, NSString **detailText, BOOL *detailTextHighlighted) {
        NSLog( @"password handler!" );
        return BZPasscodeViewControllerResultDone;
    };
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:self.passView];
    self.passView.contentSizeForViewInPopover = [BZPasscodeViewController defaultContentSizeForView];
    self.passView.modalInPopover = YES;
    UIPopoverController* uipc = [[UIPopoverController alloc] initWithContentViewController:navigationController];
    self.passcodePopover = uipc;
    [self.passcodePopover bz_presentPopoverInWindow:self.view.window animated:YES];
}

现在奇怪的是,它似乎在调用设置属性时崩溃了,可以在这个堆栈跟踪片段中看到:

0   CoreFoundation                      0x01d2802e __exceptionPreprocess + 206
1   libobjc.A.dylib                     0x01165e7e objc_exception_throw + 44
2   CoreFoundation                      0x01d27deb +[NSException raise:format:] + 139
3   UIKit                               0x00573bf2 -[UIPopoverController dealloc] + 86
4   libobjc.A.dylib                     0x011799ff -[NSObject release] + 47
5   libobjc.A.dylib                     0x011780d5 objc_release + 69
6   libobjc.A.dylib                     0x01178fda objc_storeStrong + 39
7   Kiosk                               0x00047d59 -[SplashViewController setPasscodePopover:] + 57
8   Kiosk                               0x00047ad2 -[SplashViewController adminConfig:] + 802
...

但是,弹出框在应用程序崩溃之前立即出现在模拟器中,因此它显然已经超过了当前的调用。显然还有其他一些隐含的要求setPasscodePopover:发生在某处。

如果它提供任何见解,则上述方法是由手势识别器触发的。

4

1 回答 1

1

self.passcodePopoveruipc分配给它时不为零。它已经指向一个屏幕弹出控制器。当您分配uipc给 时self.passcodePopover,它会释放旧的弹出框控制器,然后在其视图仍然可见时将其释放。

您需要弄清楚何时要关闭旧的弹出框。您可以在重新分配之前简单地将其关闭:

[self.passcodePopover dismissPopoverAnimated:YES];
self.passcodePopover = uipc;

请注意,发送dismissPopoverAnimated:到 nil 是安全的(它没有效果),因此您甚至不必先检查它。

于 2013-06-27T23:35:17.283 回答