微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – presentViewController黑色背景而不是透明

我有一个观点,我希望以标准方式呈现给用户(从屏幕底部向上滑动).大约一半的视图是透明背景,下半部分有一些输入字段(想象键盘弹出的方式).当我在rootViewController上调用[self presentViewController]时,它会向上滑动视图,但是大约半秒之后,视图过去是透明的,而是用黑色代替.这与presentViewController和presentModalViewController都会发生.如何改变这种行为?

解决方法

这是可能的,rockybalboa在 raywenderlich.com论坛帖子中提供了解决此问题的方法

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 = true
backgroundController.definesPresentationContext = true
overlayViewController.modalPresentationStyle = .OverCurrentContext

在iOS 8.1和Swift 1.2上使用Xcode 6.3 beta 3实现了这一点,它完美无缺.

只是评论我在查找和尝试Ray Wenderlich论坛解决方案之前,已经查看了三个不同的SO问题 – 现在标记为重复.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐