Color-Picker-for-iOS
Color-Picker-for-iOS copied to clipboard
componentCount has wrong type in GradientView.mm (warning message)
int componentCount = colors.count * COLOR_COMPONENT_COUNT;
should be NSUInteger componentCount = colors.count * COLOR_COMPONENT_COUNT;
It's probably fine, but compiler warnings...