how to set hex color code for background [duplicate]
I like to use this little piece of code to use HTML web colors in my apps. Usage: [self.view setBackgroundColor: [self colorWithHexString:@”FFFFFF”]]; /* white */ The Code: -(UIColor*)colorWithHexString:(NSString*)hex { NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString]; // String should be 6 or 8 characters if ([cString length] < 6) return [UIColor grayColor]; // strip 0X … Read more