iOS背景色
Posted God
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS背景色相关的知识,希望对你有一定的参考价值。
UIColor *color1=[UIColor colorWithRed:155/255 green:255/255 blue:255/255 alpha:1];//方法1,使用 静态方法创建color _view1.backgroundColor=color1; UIColor *color2=[[UIColor alloc] initWithRed:222/255 green:213/255 blue:221/255 alpha:1];//方法2,使用 实例方法 创建color [_view2 setBackgroundColor:color2];
以上是关于iOS背景色的主要内容,如果未能解决你的问题,请参考以下文章