vote up 1 vote down star

I want to set the background color of a label using HSV instead of RGB. How do I implement this into code?

Code:

//.m file

#import "IBAppDelegate.h"

@implementation IBAppDelegate


@synthesize label;

{
self.label.backgroundColor = [UIColor colorWithRed:1.0f
                                             green:0.8f
                                              blue:0.0f
                                             alpha:1.0f];
}
flag

1 Answer

vote up 6 vote down check

You can use the following convenience constructor of the UIColor object:

+ (UIColor *)colorWithHue:(CGFloat)hue saturation:(CGFloat)saturation brightness:(CGFloat)brightness alpha:(CGFloat)alpha
link|flag
RGB -> HSV requires some custom code, but HSV -> RGB is pretty easy. You're in luck! – Ben Gotow Jun 26 at 23:31
Thanks! It didn't know it would be so easy. That specific code actually gave me some syntax errors. It worked out better as: [UIColor colorWithHue:(CGFloat) saturation:(CGFloat) brightness:(CGFloat) alpha:(CGFloat)] – Evelyn Jun 29 at 12:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.