web-dev-qa-db-ja.com

iOS:警告「ビューがウィンドウ階層にないViewControllerを表示しようとしています」

Navigation ControllerにActivityControllerを表示しようとすると、次の警告が表示されます。

Attempt to present <UIActivityViewController: 0x15be1d60> on <UINavigationController: 0x14608e80> whose view is not in the window hierarchy!

私は次のコードでView Controllerを提示しようとしましたが、

UIActivityViewController * activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:applicationActivities];
    activityController.excludedActivityTypes = excludeActivities;

    UIViewController *vc = self.view.window.rootViewController;
    [vc presentViewController: activityController animated: YES completion:nil];

    [activityController setCompletionHandler:^(NSString *activityType, BOOL completed) {
        NSLog(@"completed");

    }];

ここで何が間違っているのですか?

39
iOSNoob

rootViewControllerからView Controllerを表示しようとしています。あなたの場合、rootViewControllerは現在のViewControllerではないと思います。その上に新しいUIViewControllerを提示またはプッシュしました。一番上のView Controller自体からView Controllerを提示する必要があります。

変更する必要があります:

UIViewController *vc = self.view.window.rootViewController;
[vc presentViewController: activityController animated: YES completion:nil];

に:

[self presentViewController: activityController animated: YES completion:nil];
34
Midhun MP

分析:現在のモーダルビューViewControllerクラスがウィンドウにロードされていないため。これは建物に相当し、2階は建てられておらず、3階を直接カバーしますが、これは間違いです。 ViewControllerのビューをロードした後のみ。

Python

- (void)viewDidAppear:(BOOL)animated {

 [super viewDidAppear:animated];

    [self showAlertViewController];

}

- (void)showAlertViewController {

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Hello world" message:@"(*  ̄3)(ε ̄ *)d" preferredStyle:UIAlertControllerStyleAlert];

    // Create the actions.

    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"hello" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
        NSLog(@"The \"Okay/Cancel\" alert's cancel action occured.");
    }];

    UIAlertAction *otherAction = [UIAlertAction actionWithTitle:@"world" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
        NSLog(@"The \"Okay/Cancel\" alert's other action occured.");
    }];

    // Add the actions.
    [alertController addAction:cancelAction];
    [alertController addAction:otherAction];

    UIWindow *windows = [[UIApplication sharedApplication].delegate window];
    UIViewController *vc = windows.rootViewController;
    [vc presentViewController:alertController animated: YES completion:nil];
}

これは私のために働いた。

6
qingsong

行を置換:

UIViewController *vc = self.view.window.rootViewController;
[vc presentViewController: activityController animated: YES completion:nil];
//to
[self presentViewController:activityController animated: YES completion:nil];

または

[self.navigationController pushViewController:activityController animated:YES];
3