0

ボタンをクリックすると、ポップオーバーが正しく表示されます。

向きが変わると消えて、黒いトップバーが残ります。

以下、参考画像です。

なぜそれが起こっているのか、誰でも示唆できますか?

ここに画像の説明を入力

ここに画像の説明を入力

私のコード:

EBFirstViewController *firstViewController = [[EBFirstViewController alloc]init];
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:firstViewController];
    navigationController.delegate = self;

    UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navigationController];
    self.popoverController = popover;
    popoverController.delegate = self;

    [popoverController setPopoverContentSize:CGSizeMake(320.0f, 527.0f)];
    [popoverController presentPopoverFromRect:settingsBtn.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
4

1 に答える 1

0

そのために次のコードはあなたの問題を解決するのに役立ちます。

- (void)application:(UIApplication *)application willChangeStatusBarOrientation:(UIInterfaceOrientation)newStatusBarOrientation duration:(NSTimeInterval)duration {
    // a cheat, so that we can dismiss all our popovers, if they're open.

    if (ObjPopover) {
        // if we're actually showing the menu, and not the about box, close out any active menu dialogs too
        if (menuPopoverVC && menuPopoverVC == ObjPopover.contentViewController)
            [menuPopoverVC.popoverController dismissPopoverAnimated:YES];
        [menuPopoverPC dismissPopoverAnimated:YES];
        menuPopoverPC = nil;
    }
}


- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController {
    // the user (not us) has dismissed the popover, let's cleanup.
    ObjPopover = nil;
}
于 2012-08-14T12:21:16.967 に答える