Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Check if UIColor is dark or bright?

Is there simple way to determine if a UIColor is dark or light? I'd like to put a label on a dynamic background and change its text color to white if the background's dark or to black if its a light color.

share|improve this question

marked as duplicate by Bot, David Rönnqvist, Blazemonger, Jim O'Neil, Janak Nirmal Dec 6 '12 at 4:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

I haven't tested this, but it may work for you...

-(BOOL) isLightColor:(UIColor*)clr {
    CGFloat white = 0;
    [clr getWhite:&white alpha:nil];
    return (white >= 0.5);
}
share|improve this answer

Calculate the color contrast between your label and background and decide on your color from there. Generally, this will involve getting the components of the colors in question.

If you google "Calculate Color Contrast" sans the quotes, you'll find some links. You may not find anything iOS specific, but you should be able to adapt the code you find, especially since they'll generally involve a function of the RGB, which is straight-forward.

share|improve this answer

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