TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A color picker presented in a UIView (you can add this color picker to a UIPopoverController or a simple UIViewController).
Please use CocoaPods and include STColorPicker in your Podfile.
Build and run the project STColorPickerExample in Xcode to see STColorPicker
in action.
STColorPicker *colorPicker = [[STColorPicker alloc] initWithFrame:CGRectMake(0.0, 0.0, 200.0, 180.0)];
[colorPicker setColorHasChanged:^(UIColor *color, CGPoint location) {
NSLog(@"New color: %@", color);
}];
[self.view addSubview:colorPicker];
Sebastien Thiebaud
STColorPicker is available under the MIT license.