欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

弹出view背景半透明的控制器,用于实现类似于自定义弹出框(带蒙版), UIview透明自定义弹出框 

程序员文章站 2022-07-07 21:32:44
...
//弹出view背景半透明的控制器,用于实现类似于自定义弹出框(带蒙版),

UIViewController *rootControler=self.view.window.rootViewController;
       
    TestViewController *test=[[TestViewController alloc] init];
   
    test.view.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.8];
   
    rootControler.modalPresentationStyle=UIModalPresentationCurrentContext;
   
    [rootControler presentViewController:test animated:YES completion:nil];