Tagged Questions

2
votes
4answers
119 views

Objective C Find closest color (rgb) match

I have a predefined array of rgb values. I want to be able to compare a user defined color to my array and return the closest match in Objective C. Any help is greatly appreciated.
2
votes
2answers
359 views

iPhone: change Navigation Bar title color and back button title color

hi all, i want to change the NavigationItem title color. Also i want to the change the text color of back button of navigation bar. Please suggest how can i do this task? i am using iPhone Os sdk …
1
vote
1answer
54 views

UIColor Limitations or Bugs on iPhone 3.0

I'm working with some colors, and they don't appear to be correct at all. The attached Images show the expected result, and the actual simulator, and on-device result. As you can see there appears …
1
vote
1answer
196 views

iPhone: change hex color format to UIColor

hi all, i am creating a application, in which i pick the color of label from XML file.XML file return the color in Hex format(for ex. #00FF00). so how can i change this value to UIColor
3
votes
2answers
98 views

How do i change color of letters of sectionIndexTitlesForTableView? is it possible in iphone???

hi I have to change the color of sectionIdexTitle for table view??how to do this? any one knows it ??please tell me??
2
votes
2answers
131 views

How do i get red green blue and alpha back from a UIColor object?

I am getting a UIColor returned from this method: - (UIColor *)getColor { return [UIColor colorWithRed:redSlider.value green:greenSlider.value blue:blueSlider.value alpha:1.0]; } and getting …
1
vote
4answers
419 views

iPhone Objective C : Saving & Loading UIColor into & from NSUserDefaults

What's the easiest way to save UIColor into NSUserDefaults ? And how to re-create it from NSUserDefaults? Many thanks for reading
1
vote
1answer
80 views

Bad Access error when accessing a UIColor*

In my drawing routine for a custom UITableViewCell, was using the following without any problems: CGContextRef context = UIGraphicsGetCurrentContext(); UIColor* backgroundColor = [UIColor …
0
votes
1answer
192 views

UIColor colorWithPatternImage uses only one image

I'm trying to give tableviewcell's different backgroundColors with colorwithPatternImage and it is not working as expected. The documentation says nothing about only being able to use one pattern at a …
0
votes
1answer
327 views

Gradient trick changed in iPhone 3.0 SDK?

I'm using a trick to get gradient on my table cells. After I upgraded to the iPhone 3.0 SDK i noticed that the gradient highlighting, when I select a cell, no longer works. iPhone 2.2.1 iPhone 3.0 …
1
vote
4answers
398 views

Is Macro Better Than UIColor for Setting RGB Color?

I have this macro in my header file: #define UIColorFromRGB(rgbValue) \ [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \ green:((float)((rgbValue & …
0
votes
1answer
417 views

[UIColor colorWithWhite] to RGB

Is there a Cocoa way to convert colors from one color space to another? At the end of this code: UIColor *grey = [UIColor colorWithWhite: 0.5 alpha: 1.0]; CGColorRef greyRef = [grey CGColor]; int x …
2
votes
2answers
230 views

How to compare UIColors?

I'd like to check the color set for a background on a UIImageView. I've tried: if(myimage.backgroundColor == [UIColor greenColor]){ ...} else{ ...} but that doesn't work, even when I know the …
2
votes
2answers
297 views

Anomalous results getting color components of some UIColors

I'm trying to extract the rgb components of a UIColor in order to hand-build the pixels in a CGBitmapContext. The following sample code works fine for most of the UIColor constants but, confusingly, …
0
votes
2answers
729 views

Extracting rgb from UIColor

Seen this asked before but my example does not seem to work. const CGFloat *toCol = CGColorGetComponents([[UIColor greenColor] CGColor]); The array is empty from looking at it with GDB. Any hints? …

1 2 next
15 30 50 per page