IOS 弹出模态透明的ViewController

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS 弹出模态透明的ViewController相关的知识,希望对你有一定的参考价值。

ViewController *vcObj = [[ViewController alloc] initWithNibName:NSStringFromClass([ViewController class]) bundle:nil];
    UINavigationController *navCon = [[UINavigationController alloc] initWithRootViewController:vcObj];
    
    if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) {
        
        navCon.providesPresentationContextTransitionStyle = YES;
        navCon.definesPresentationContext = YES;
        navCon.modalPresentationStyle = UIModalPresentationOverCurrentContext;
        
        [self presentViewController:navCon animated:NO completion:nil];
    }
    else {
        
        AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
        [self presentViewController:navCon animated:NO completion:^{
            [navCon dismissViewControllerAnimated:NO completion:^{
                appDelegate.window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
                [self presentViewController:navCon animated:NO completion:nil];
                appDelegate.window.rootViewController.modalPresentationStyle = UIModalPresentationFullScreen;
                
            }];
        }];
    }

以上是关于IOS 弹出模态透明的ViewController的主要内容,如果未能解决你的问题,请参考以下文章

具有透明背景和不透明前景的 iOS 模态 ViewController

IOS 7:添加具有透明度的模态 ViewController:自定义大小

IOS78模态半透明弹出框

iOS 透明 ViewController

iPad上的模态表单在Swift中透明?

需要协助解除模态呈现的 ViewController 并从 UINavigationController 弹出 ViewController