1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-11 17:09:46 +01:00
Telegram/Share/TGColor.m

11 lines
425 B
Mathematica
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TGColor.h"
UIColor *TGColorWithHex(int hex)
{
return [[UIColor alloc] initWithRed:(((hex >> 16) & 0xff) / 255.0f) green:(((hex >> 8) & 0xff) / 255.0f) blue:(((hex) & 0xff) / 255.0f) alpha:1.0f];
}
UIColor *TGColorWithHexAndAlpha(int hex, CGFloat alpha)
{
return [[UIColor alloc] initWithRed:(((hex >> 16) & 0xff) / 255.0f) green:(((hex >> 8) & 0xff) / 255.0f) blue:(((hex) & 0xff) / 255.0f) alpha:alpha];
}