Evenly distributed random color generator for Objective-C.
This function randomly generates distinct colors with consistent lightness and saturation using the Golden Ratio.
Import RandomColor.h, and call generateRandomColor, which will return a UIColor.
Example:
UIColor *tempColor = [RandomColor generateRndColor];
This code was ported to Objective-C from Martin Ankerl's blog post.