According to this answer:
I can use premixed colors like blackColor, blueColor etc...
I want to use my own color though, made from UIColor colorWithRed: ...
ratingText.layer.borderColor = [[UIColor colorWithRed:33 green:95 blue:139 alpha:1] CGColor];
The border then is not displayed. How could I bridge the UIColor to CGColor, or do I miss anything else?
Help is greatly appreciated - thx!