我在 UIView 上设置边框颜色时遇到问题。如果设置tempColor
为[UIColor lighGreyColor], [[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:1.0],
or [UIColor blueColor]
,则按预期设置边框。但是,下面的代码没有设置颜色,也没有出现边框。 unamecontainer
是UIView
。为什么我可以将边框颜色设置为上面提到的颜色,而不是下面的颜色。
UIColor *tempColor = [[UIColor alloc] initWithRed:169 green:201 blue:229 alpha:1.0];
self.unamecontainer.layer.borderColor = tempColor.CGColor;
self.unamecontainer.layer.borderWidth = 1.0;