How can I get the iOS 7 default blue color programmatically?

IosColorsIos7Uicolor

Ios Problem Overview


I'm creating custom elements in my app and want to match the look and feel of the new iOS. iOS 7 introduced to us a very common lighter blue color, the default color or tint for several elements, including the system button, segmented control, etc. They've made it easy to select the color using IB, as seen here:

enter image description here

However, I haven't found how to easily access the color programmatically. I checked out the UIColor documentation, and there doesn't seem to be any accessor for the blue system color in the class itself.

Here's my question: does a simple accessor exist for this color? [UIColor ?] or something like it? If not, does someone know the exact RGB values for that color?

Ios Solutions


Solution 1 - Ios

Use self.view.tintColor from a view controller, or self.tintColor from a UIView subclass.

Solution 2 - Ios

It appears to be [UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0].

screenshot showing Colors window

Solution 3 - Ios

iOS 7 default blue color is R:0.0 G:122.0 B:255.0

UIColor *ios7BlueColor = [UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0];

Solution 4 - Ios

According to the documentation for UIButton:

> In iOS v7.0, all subclasses of UIView derive their behavior for tintColor from the base class. See the discussion of tintColor at the UIView level for more information.

Assuming you don't change the tintColor before grabbing the default value, you can use:

self.view.tintColor

Solution 5 - Ios

Here is a simple method to get the default system tint color:

+ (UIColor*)defaultSystemTintColor
{
   static UIColor* systemTintColor = nil;
   static dispatch_once_t onceToken;
   dispatch_once(&onceToken, ^{
      UIView* view = [[UIView alloc] init];
      systemTintColor = view.tintColor;
   });
   return systemTintColor;
}

Solution 6 - Ios

Hex Color code

#007AFF

and you need this libary https://github.com/thii/SwiftHEXColors

ps. iOS, Swift

Solution 7 - Ios

swift 4 way:

extension UIColor {
  static let system = UIView().tintColor!
}

Solution 8 - Ios

Native extension with predefined system colors gives what you're looking for:

// System colors

extension UIColor {

   
    /* Some colors that are used by system elements and applications.
     * These return named colors whose values may vary between different contexts and releases.
     * Do not make assumptions about the color spaces or actual colors used.
     */
    
    ... 

    @available(iOS 7.0, *)
    open class var systemBlue: UIColor { get }
    ... 
}

You can use it directly:

myView.tintColor = .systemBlue

Solution 9 - Ios

Get the color automatically by using this code:

static let DefaultButtonColor = UIButton(type: UIButtonType.System).titleColorForState(.Normal)!

Solution 10 - Ios

The UIWindow.tintColor method wasn't working for me in iOS8 (it was still black), so I had to do this:

let b = UIButton.buttonWithType(UIButtonType.System) as UIButton
var color = b.titleColorForState(.Normal)

This gave the proper blue tint seen in a UIBarButtonItem

Solution 11 - Ios

From iOS 7 there is an API and you can get (and set) the tint color with:

self.view.tintColor

Or if you need the CGColor:

self.view.tintColor.CGColor

Solution 12 - Ios

In many cases what you need is just

[self tintColor] 
// or if in a ViewController
[self.view tintColor]

or for swift

self.tintColor
// or if in a ViewController
self.view.tintColor




Solution 13 - Ios

Please don't mess with view.tintColor or extensions, but simply use this:

UIColor.systemBlue

Solution 14 - Ios

while setting the color you can set color like this

[UIColor colorWithRed:19/255.0 green:144/255.0 blue:255/255.0 alpha:1.0]

Solution 15 - Ios

Adding a category to UIColor the following way will make it available to you anytime you need it or even change its definition accross your code:

@interface UIColor (iOS7Colors)

+ (instancetype)iOS7blueColor;

@end

@implementation UIColor (SpecialColors)

+ (instancetype)iOS7blueColor;
{
    return [UIColor colorWithRed:0.0f green:0.22f blue:122.0/255.0 alpha:1.0f];
}

Once you import the Category in your code you can call the color by using:

UIColor *myBlueColor = [UIColor iOSblueColor];

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoel H.View Question on Stackoverflow
Solution 1 - IosAaron BragerView Answer on Stackoverflow
Solution 2 - IosGregView Answer on Stackoverflow
Solution 3 - IostarumView Answer on Stackoverflow
Solution 4 - IosScott CarterView Answer on Stackoverflow
Solution 5 - IosRickView Answer on Stackoverflow
Solution 6 - IosEgo SlayerView Answer on Stackoverflow
Solution 7 - IosDmitry KozlovView Answer on Stackoverflow
Solution 8 - IosStanislau BaranouskiView Answer on Stackoverflow
Solution 9 - IosLukasz CzerwinskiView Answer on Stackoverflow
Solution 10 - Ioscscott530View Answer on Stackoverflow
Solution 11 - IosCodecraft StudioView Answer on Stackoverflow
Solution 12 - IosAliView Answer on Stackoverflow
Solution 13 - IosElyView Answer on Stackoverflow
Solution 14 - IosAnurag SoniView Answer on Stackoverflow
Solution 15 - IosRenaud BoisjolyView Answer on Stackoverflow