iOS 8 UIModalPresentationCurrentContext is not transparent?
该解决方案在Objective-C中引用了巴尔博亚的答案:
Before iOS 8,you do this:
[backgroundVIEwController setModalPresentationStyle:UIModalPresentationCurrentContext];[backgroundVIEwController presentVIEwController:_myMoreAppsVIEwController animated:NO completion:nil];
in iOS 8,you have to do this:
backgroundVIEwController.provIDesPresentationContextTransitionStyle = YES;backgroundController.definesPresentationContext = YES;[overlayVIEwController setModalPresentationStyle:UIModalPresentationOverCurrentContext];
用Swift等价物来补充上面的代码:
backgroundVIEwController.provIDesPresentationContextTransitionStyle = truebackgroundController.definesPresentationContext = trueoverlayVIEwController.modalPresentationStyle = .OverCurrentContext
在iOS 8.1和Swift 1.2上使用Xcode 6.3 beta 3实现了这一点,它完美无缺.
只是评论我在查找和尝试Ray Wenderlich论坛解决方案之前,已经查看了三个不同的SO问题 – 现在标记为重复.
总结以上是内存溢出为你收集整理的ios – presentViewController黑色背景而不是透明全部内容,希望文章能够帮你解决ios – presentViewController黑色背景而不是透明所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)