UIColor+AWKit.h
IntroductionUse the links in the table of contents to the left to access the documentation. MethodscolorWithHex:alpha:+ (UIColor*)colorWithHex:(UInt32)hex alpha:(CGFloat)alpha; ParametersReturn ValueA UIColor with the color specified by a hex value DiscussionWill return a UIColor from a hex value (Eg. 0xffffff == RGB(255,255,255) <==> White) colorWithHexString:alpha:+ (UIColor*)colorWithHexString:(NSString*)hex alpha:(CGFloat)alpha; ParametersReturn ValueA UIColor with the color specified by a hex value DiscussionWill return a UIColor from a hex value (Eg. @"#ffffff" == RGB(255,255,255) <==> White) randomColorWithAlpha:+ (UIColor*)randomColorWithAlpha:(CGFloat)alpha; ParametersReturn ValueA random UIColor with specified alpha DiscussionWill return a random UIColor with a specified alpha (just for fun!) |