标签: iphone uiview colors background tint
如何将色调颜色设置为uiview背景色? 感谢。
答案 0 :(得分:1)
设置UIView视图的backgroundColor属性:
UIView
backgroundColor
UIView *myView; UIColor *myTint; ... /* initialize myView and myTint */ ... myView.backgroundColor = myTint; ... /* release myTint, if necessary */