iOS8以iOS8以下的系统present一个半透明的ViewController的方法

起因

需求需要做一个引导页面,这个引导页的逻辑处理较多,如果单独一个View,不方便管理与后期的维护,所以需要做成ViewController来管理和维护
下面直接分享一下我的源码

RecommandViewController *recommandVC = [[RecommandViewController alloc]init];
    if([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0){
        recommandVC.modalPresentationStyle=
        UIModalPresentationOverCurrentContext|UIModalPresentationFullScreen;//if the controller has container like navigationcontroller or tababr controlelr,if you don`t use the UIModalPresentationFullScreen the bar will cover the viewcontroller
        [FindAppDelegate().window.rootViewController presentViewController:recommandVC animated:NO completion:^{
            recommandVC.view.backgroundColor=[UIColor clearColor];//you can figure any transparent here
        }];
    }else{
        FindAppDelegate().window.rootViewController.modalPresentationStyle=
        UIModalPresentationCurrentContext|UIModalPresentationFullScreen;//you must use the rootViewController if the system version under the iso 8.0 or the background will be black
        [FindAppDelegate().window.rootViewController presentViewController:recommandVC animated:YES completion:^{
            recommandVC.view.backgroundColor=[UIColor clearColor];
        }];
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容