一个在 UIView 中呈现的颜色选择器(您可以将该颜色选择器添加到 UIPopoverController 或简单的 UIViewController 中)。
请使用 CocoaPods 并在 Podfile 中包含 STColorPicker。
在 Xcode 中构建并运行 STColorPickerExample 项目,以查看 STColorPicker
的实际应用。
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 可在 MIT 许可证下使用。