如何使用具有透明背景的相同UIViewController
创建UINavigationViewController
的序列
我写
ProfileViewController *viewController = [[ProfileViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
viewController.view.backgroundColor = [UIColor clearColor];
viewController.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:navController animated:YES completion:nil];
但是显示viewController
的动画背景是透明的,但在透明消失之后
我看到了如何使用addSubview
显示一个视图,但我的序列为uiviewcontrollers
。