我能够在两个ViewController
之间进行转换,但每次调用这个翻转过渡时,View的背景都会显示为黑色,与我应用的一般外观不匹配。
我找到了一些关于如何在Obj-C中摆脱它的教程,但由于我不知道这意味着什么,我希望你们能为我翻译成Swift。
以下是Obj-C-Code的网站: Obj-C Solution
答案 0 :(得分:2)
试试这个:
UIApplication.sharedApplication().delegate?.window??.backgroundColor = UIColor.whiteColor()
Swift 4 / Swift 5:
UIApplication.shared.delegate?.window??.backgroundColor = UIColor.white