``` int componentCount = colors.count * COLOR_COMPONENT_COUNT; ``` should be NSUInteger componentCount = colors.count \* COLOR_COMPONENT_COUNT; It's probably fine, but compiler warnings...
should be
NSUInteger componentCount = colors.count * COLOR_COMPONENT_COUNT;
It's probably fine, but compiler warnings...