I am getting following warning when I try to present a ActivityController on navigation controller,
Attempt to present <UIActivityViewController: 0x15be1d60> on <UINavigationController: 0x14608e80> whose view is not in the window hierarchy!
I have tried to present view controller by following code,
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");
}];
Whats going wrong here ?
Replace line:
or
Analysis: Because the present modal view ViewController class has not been loaded into the window. This is equivalent to the building, second floor haven't built, directly go to cover 3 floor, this is definitely not. Only after load ViewController's view ;
Python
This's worked for me.
I faced the similar issue in iPhone 6+.
In Swift 2.0
I solved it by this way.
You are trying to present a view controller from the
rootViewController
. In your case I think therootViewController
is not the current ViewController. Either you presented or pushed a newUIViewController
on top of it. You should present a view controller from the top most view controller itself.You need to change:
to: