首页 热点专区 小学知识 中学知识 出国留学 考研考公
您的当前位置:首页正文

新的Controller背景透明

2024-12-10 来源:要发发知识网

在做项目的时候,需要将一个新的controller盖到上层controller上,而且新的controller背景是半透明的,可以显示出上层controller的内容。为实现这一需求,需要在present新的controller的时候,这样写:

NewViewController *vc = [[NewViewController alloc]init];
self.definesPresentationContext = YES; //self is presenting view controller
vc.view.backgroundColor = [UIColor clearColor];
vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[self presentViewController:vc animated:NO completion:nil];
显示全文