你以前可能会看到这一点,它在ScoutMob等消费品别的应用中变得非常受欢迎.我试图在启动时实现60%的透明视图,这将覆盖我的主屏幕,解释如何使用主屏幕的功能并轻按消失.
我的整个应用程序已经完成(从几年前开始就使用.xib,但是可以随心所欲地以故事板格式进行解释,因为我可能会在其他iO 5.0应用程序中重用此功能.)
单个视图没有任何问题,但是暂时将一个视图叠加在一起,这是我没有直观的看出来的.我会继续研究,并包括任何有用的提示,我发现,以防其他人试图做同样的事情.
解决方法
// get your window screen size CGRect screenRect = [[UIScreen mainScreen] bounds]; //create a new view with the same size UIView* coverView = [[UIView alloc] initWithFrame:screenRect]; // change the background color to black and the opacity to 0.6 coverView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.6]; // add this new view to your main view [self.view addSubview:coverView];
当你完成它,你可以romove它:
[coverView removeFromSuperview];