我正在使用UIModalTransitionStyleCoverVertical
。 viewcontroller从底部弹出,在iPad上工作正常但在iPhone上看起来是静态的。
任何帮助都将不胜感激。
window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[viewController setModalPresentationStyle:UIModalPresentationCurrentContext];
[window setRootViewController:viewController];
[window makeKeyAndVisible];
[((AppDelegate *)[[UIApplication sharedApplication] delegate]).viewController presentViewController:anyViewController animated:YES completion:nil];