Guest User

Untitled

a guest
Jun 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #define UIColorFromHexadecimalRGB(s) [UIColor colorWithRed:((CGFloat)((s & 0xFF0000) >> 16))/255.0 green:((CGFloat)((s & 0x00FF00) >> 8))/255.0 blue:((CGFloat)((s & 0x0000FF)))/255.0 alpha:1.0f]
Add Comment
Please, Sign In to add comment