本文介绍了UIView在Swift中的背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法用Swift设置UIView背景颜色?

Is there a way to set the UIView background color with Swift?

我知道在Objective-C中你会使用 self。 view.backgroundColor = [UIColor redColor]; ,但这在Swift中的工作方式不同。我环顾四周,因为斯威夫特只有一周左右的时间,我找不到答案。

I know that in Objective-C, you would use self.view.backgroundColor = [UIColor redColor];, but that does not work the same way in Swift. I have looked around and because Swift is only about a week old, I cannot find an answer.

有没有人有任何建议?

推荐答案

self.view.backgroundColor = UIColor.redColor()

在Swift 3中:

self.view.backgroundColor = UIColor.red

这篇关于UIView在Swift中的背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 06:57