mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
16 lines
No EOL
439 B
Objective-C
16 lines
No EOL
439 B
Objective-C
//
|
|
// Created by Sami Samhuri on 15-04-21.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
#import "UIColor+Hex.h"
|
|
|
|
@implementation UIColor (Hex)
|
|
|
|
+ (UIColor *)mm_colorFromInteger:(NSUInteger)color {
|
|
unsigned char red = color >> 16;
|
|
unsigned char green = (color >> 8) & 0xff;
|
|
unsigned char blue = color & 0xff;
|
|
return [UIColor colorWithRed:red / 255.0 green:green / 255.0 blue:blue / 255.0 alpha:1.0];
|
|
}
|
|
|
|
@end |