为uiview背景颜色设置色调

时间:2010-11-26 08:57:50

标签: iphone uiview colors background tint

如何将色调颜色设置为uiview背景色? 感谢。

1 个答案:

答案 0 :(得分:1)

设置UIView视图的backgroundColor属性:

UIView *myView;
UIColor *myTint;
...
/* initialize myView and myTint */
...
myView.backgroundColor = myTint;
...
/* release myTint, if necessary */