我有2个ViewController,A和B.它们都在NavigationController中。当我把A推到B时,我只想在中心放置B尺寸并且留在A前面,但后面的A应该显示alpha = 1,但是我不能这样做。 A屏幕像这样黑色
以下是我在ViewWillAppear中的B代码:
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
width = UIScreen.mainScreen().bounds.width
height = UIScreen.mainScreen().bounds.height
self.navigationController?.view.frame = CGRectMake(100, 100, width! - 200, height! - 200)
title = ""
self.navigationController?.setNavigationBarHidden(false, animated: false)
}
我想要设置后面的视图是显示alpha = 0.5。不像这样黑。意味着ViewController A显示而不是黑屏,但当然我们无法点击后面的视图中的任何位置。 Anyhelp会很感激。