Top "Uicolor" questions

A UIColor object represents color and sometimes opacity (alpha value).

How to use hex color values

I am trying to use hex color values in Swift, instead of the few standard ones that UIColor allows you …

ios swift uicolor
How can I create a UIColor from a hex string?

How can I create a UIColor from a hexadecimal string format, such as #00FF00?

ios cocoa-touch uicolor
How can I change image tintColor in iOS and WatchKit

I have an UIImageView called "theImageView", with UIImage in a single color (transparent background) just like the left black heart …

ios swift uiimage uicolor watchkit
Programmatically create a UIView with color gradient

I'm trying to generate a view with a gradient color background (A solid color to transparent) at runtime. Is there …

ios uiview uicolor
How to change the status bar background color and text color on iOS 7?

My current application runs on iOS 5 and 6. The navigation bar is having an orange color and the status bar is …

ios ios7 uicolor ios-statusbar
How can I get the iOS 7 default blue color programmatically?

I'm creating custom elements in my app and want to match the look and feel of the new iOS. iOS 7 …

ios colors ios7 uicolor
Can not change UILabel text color

I want to change the UILabel text color but I can't change the color, This is how my code looks …

objective-c uilabel uicolor
Making RGB color in Xcode

I am using RGB values of a color from Photoshop and using the same in Xcode the values are.Color-R-160,…

ios objective-c uicolor
how to set hex color code for background

Possible Duplicate: How can I create a UIColor from a hex string? I want to programmatically set the color of …

ios hex uicolor
How to get RGB values from UIColor?

I'm creating a color object using the following code. curView.backgroundColor = [[UIColor alloc] initWithHue:229 saturation:40 brightness:75 alpha:1]; How can I …

ios rgb uicolor