I want to present a view controller from the app delegate that appears above everything, including any modal views open.
I'd be doing this when a push notification arrives.
test *fixtureViewController = [[test alloc] init];
[self.window.rootViewController presentViewController:testViewController animated:YES completion:nil];
But this doesn't work if there is a modal view active from another view controller.
Any ideas?