I have the following code:
UIColor *borderColor = [UIColor colorWithRed:182 green:10 blue:96 alpha:1.0];
[viewImage.layer setBorderColor:borderColor.CGColor];
[viewImage.layer setBorderWidth:3.0];
[productView addSubview:viewImage];
where viewImage
is my UIImageView
and productView
is my UIView
.
I want to get this color , but all I am getting is this color . I tried different values, and all the colors that I am getting is either white, red, black, yellow, or blue. I can't get any other colors, doesn't matter what values I enter. I tried colorWithHue:Saturation:Brightness and I have the same issue.
I am using this on iOS 6 SDK.
What am I doing wrong and how can I fix it?
The values for red green and blue should be beween 0.0 and 1.0. From UIColor doc:
Values below 0.0 are interpreted as 0.0, and values above 1.0 are interpreted as 1.0.