iOS:Swift - 在Flip-Animation期间更改Backgroundcolor

时间:2016-02-07 16:26:49

标签: ios iphone swift

我能够在两个ViewController之间进行转换,但每次调用这个翻转过渡时,View的背景都会显示为黑色,与我应用的一般外观不匹配。

我找到了一些关于如何在Obj-C中摆脱它的教程,但由于我不知道这意味着什么,我希望你们能为我翻译成Swift。

以下是Obj-C-Code的网站: Obj-C Solution

1 个答案:

答案 0 :(得分:2)

试试这个:

UIApplication.sharedApplication().delegate?.window??.backgroundColor = UIColor.whiteColor()

Swift 4 / Swift 5:

UIApplication.shared.delegate?.window??.backgroundColor = UIColor.white