HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – presentViewController黑色背景而不是透明大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个观点,我希望以标准方式呈现给用户(从屏幕底部向上滑动).大约一半的视图是透明背景,下半部分有一些输入字段(想象键盘弹出的方式).当我在rootViewController上调用[self presentViewController]时,它会向上滑动视图,但是大约半秒之后,视图过去是透明的,而是用黑色代替.这与presentViewController和presentModalViewController都会发生.如何改变这种行为?

解决方法

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

iOS 8 UIModalPresentationCurrentContext is not transparent?

解决方案在Objective-C中引用了巴尔博亚的答案:

[BACkgroundViewController setModalPresentationStyle:UIModalPresentationCurrentContext];
[BACkgroundViewController presentViewController:_mymoreAppsViewController animated:NO completion:nil];
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问题 – 现在标记为重复.

大佬总结

以上是大佬教程为你收集整理的ios – presentViewController黑色背景而不是透明全部内容,希望文章能够帮你解决ios – presentViewController黑色背景而不是透明所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。