先看一下效果图:
用如下代码,想弹出一个模态窗口,设置它的背景透明度为0.5,却发觉prsent后的背景色变为黑色的。
ShareVC *share = [[ShareVC alloc] init]; [self presentViewController:share animated:YES completion:nil];
NavigationController and the View Controllers are designed in such a way that only one view controller may show at a time. When a new view controller is pushed/presented the previous view controller will be hidden by the system. So when you reduce the modal view‘s alpha you will possibly see the window‘s backgroundColor (the black color you see now).
If you want a translucent view to slide-in over the main view, you can add the view as the subView of main view and animate it using UIView Animations.
所以还是改用为UIView Animations实现:if (!_isShareViewOpen) { _isShareViewOpen = YES; ShareVC *shareVC = [[ShareVC alloc] initWithNibName:@"ShareVC" bundle:nil]; shareVC.shareVC = shareVC; shareVC.awardList = self; [self.view addSubview:shareVC.view]; [UIView animateWithDuration:0.75f animations:^{ shareVC.view.frame = CGRectMake(0, 640, self.view.frame.size.width, self.view.frame.size.height); shareVC.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); } completion:^(BOOL finished) { }]; }
关于presentViewController的后的background变黑的问题,布布扣,bubuko.com
关于presentViewController的后的background变黑的问题
原文:http://blog.csdn.net/chaoyuan899/article/details/38390507