🎨 An intuitive iOS color picker built in Swift.
Go to file
2019-11-08 16:17:06 -05:00
.github Update logo 2019-04-19 19:01:04 -04:00
ChromaColorPicker.xcodeproj Resolved issue with handleSize. Added additional tests. Example homeHandle now changes tint based on lightness of selected color 2019-11-08 16:17:06 -05:00
Example Resolved issue with handleSize. Added additional tests. Example homeHandle now changes tint based on lightness of selected color 2019-11-08 16:17:06 -05:00
fastlane Removed legacy code and updated Fastfile to push podspec 2019-05-02 17:14:16 -04:00
Source Resolved issue with handleSize. Added additional tests. Example homeHandle now changes tint based on lightness of selected color 2019-11-08 16:17:06 -05:00
Tests Resolved issue with handleSize. Added additional tests. Example homeHandle now changes tint based on lightness of selected color 2019-11-08 16:17:06 -05:00
.gitignore Removed EarlGrey. Now using Quick and Nimble, created initial setup. Initialized fastlane with publish_podspec lane. 2019-02-03 20:22:11 -05:00
.swift-version Removed legacy code and updated Fastfile to push podspec 2019-05-02 17:14:16 -04:00
.travis.yml Added travis badge to readme. Added installation of bundler to travis yaml 2019-02-03 23:15:26 -05:00
ChromaColorPicker.podspec Removed legacy code and updated Fastfile to push podspec 2019-05-02 17:14:16 -04:00
Gemfile Updated property didSet to perform synchronous view layout via layoutIfNeeded instead of async setNeedsLayout. Tests use a Host now for UIEvent to trigger. Added more test cases. 2019-09-08 16:44:15 -04:00
Gemfile.lock Updated property didSet to perform synchronous view layout via layoutIfNeeded instead of async setNeedsLayout. Tests use a Host now for UIEvent to trigger. Added more test cases. 2019-09-08 16:44:15 -04:00
LICENSE Created LICENSE 2016-08-12 12:38:19 -04:00
README.md Updated and improved tests. Fixed sync layout issue and updated UIControlEvents to events that make more sense. Added tests for brightness slider. 2019-09-08 19:16:58 -04:00

ChromaColorPicker 2.0

An intuitive HSB color picker built in Swift. Supports multiple selection handles and is customizable to your needs.

TODO: Image / GIF

Examples

let colorPicker = ChromaColorPicker(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
addSubview(colorPicker)

// Optional: Add multiple handles to the color picker

// Optional: Attach a ChromaBrightnessSlider to a ChromaColorPicker
let brightnessSlider = ChromaBrightnessSlider(frame: CGRect(x: 0, y: 0, width: 280, height: 32))
addSubview(brightnessSlider)

colorPicker.connect(brightnessSlider) // or `brightnessSlider.connect(to: colorPicker)`

Usage

Multiple Handles

// Add handles
{TODO}

// Add a custom handle
{TODO}

// Remove handles
{TODO}

Supported UIControlEvents

Installation

Carthage

github "joncardasis/ChromaColorPicker"

Cocoapods

pod 'ChromaColorPicker'

Manually

Add all files from the Source folder to your project.

Components

ChromaColorPicker

An HSB color picker with support for adding multiple color selection handles.

ChromaBrightnessSlider

ChromaBrightnessSlider is a slider UIControl which can be attached to any ChromaColorPicker via the connect(to:) method. ChromaBrightnessSlider can also function as a stand-alone UIControl.

Supported UIControlEvents

You can observe on the following UIControlEvents via UIControl's addTarget method:

addTarget(self, action: #selector(sliderDidValueChange(_:)), for: .valueChanged)

@objc func sliderDidValueChange(_ slider: ChromaBrightnessSlider) {
  print("new color: \(slider.currentColor)")
}

ChromaColorPicker

Event Description
.touchDown(no) Called when a handle is first grabbed.
.touchUpInside(no) Called when a handle is let go.
.valueChanged Called whenever the color has changed.
.touchDragInside(no) Called when a handle has moved via a drag action.
.touchUpInside Called when a handle is released.

ChromaBrightnessSlider

Event Description
.touchDown Called when a the slider is grabbed.
.valueChanged Called whenever the slider is moved and the value has changed.
.touchUpInside Called when the slider handle is released.
Example

License

ChromaColorPicker is available under the MIT license. See the LICENSE file for more info.