UIBadgeView
UIBadgeView copied to clipboard
Missing HEXCOLOR() macro
Compile time error: no HEXCOLOR() macro is present in project
See the following:
https://gist.github.com/1237f30a62329819d3cf
just try the macro below #define HEXCOLOR(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]