platform :ios, '10.0'
pod "Colorful", "~> 3.0"
$ pod install
let colorPicker = ColorPicker(frame: ...)
colorPicker.addTarget(self, action: #selector(...), for: .valueChanged)
colorPicker.set(color: .red, colorSpace: .extendedSRGB)
view.addSubview(colorPicker)
You can receive .valueChanged
event when user changes color.
ColorSpace | Description |
---|---|
.extendedSRGB | The extended sRGB is color space for support wider and deeper representation of color. |
.sRGB | sRGB (standard Red Green Blue) is often the "default" color space for images that contain no color space information |
iOS10 ~
Colorful is available under new BSD License. See the LICENSE file for more info.