UIViewController *presentedVC = [[UIViewController alloc]init];
presentedVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;
AppDelegate *appdelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];
appdelegate.window.rootViewController.definesPresentationContext = YES;
[appdelegate.window.rootViewController presentViewController:presentedVC animated:YES completion:nil];
网友评论