🎨 An intuitive iOS color picker built in Swift.
Go to file
Jonathan Cardasis 4fa7a0b3cb
Merge pull request #49 from pvieito/master
[Package] Added SwiftPM support and added fix to ensure the currentHandle exists before first interaction
2020-06-04 15:30:59 -04:00
.github Readme updates 2020-03-14 17:56:42 -04:00
ChromaColorPicker.xcodeproj Update pod to swift 5 and tag builds during fastlane publish 2020-03-13 18:43:51 -04:00
Example Added rounded mask to color wheel view to give nice rounded corners to the otherwise sharp-edged generated ciimage 2019-11-08 18:32:51 -05:00
fastlane Fastlane cleanup and github auth 2020-03-14 13:23:58 -04:00
Source [Package] Added SwiftPM support and added fix to ensure the currentHandle exists event when no touch has started 2020-04-13 16:50:17 +02: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 Fastlane cleanup and github auth 2020-03-14 13:23:58 -04:00
.travis.yml Removed deployment step in public CI 2020-03-14 18:37:39 -04:00
ChromaColorPicker.podspec Fastfile: Updated Podspec version. 2020-03-14 18:56:45 -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 Update pod to swift 5 and tag builds during fastlane publish 2020-03-13 18:43:51 -04:00
LICENSE Created LICENSE 2016-08-12 12:38:19 -04:00
Package.swift [Package] Added SwiftPM support and added fix to ensure the currentHandle exists event when no touch has started 2020-04-13 16:54:31 +02:00
README.md Update README.md 2020-03-17 11:55:35 -04:00

ChromaColorPicker 2.0

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

ChromaColorPicker GIF

Looking for version 1.x? Version 1.x.x can be found on the legacy branch. While the pod is still available, it is deprecated and projects should migrate to 2.0.

Examples

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

// 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)`
  • View the Example app for more.

Usage

Multiple Handles

// Add handle at color
let peachColor = UIColor(red: 1, green: 203 / 255, blue: 164 / 255, alpha: 1)
colorPicker.addHandle(at: peachColor)

// Add handle with reference
let customHandle = ChromaColorHandle()
customHandle.color = UIColor.purple
colorPicker.addHandle(customHandle)

// Add handle and keep reference
let handle = colorPicker.addHandle(at: .blue)

Custom Handle Icon

let homeHandle = ChomaColorHandle(color: .blue)
let imageView = UIImageView(image: #imageLiteral(resourceName: "home-icon").withRenderingMode(.alwaysTemplate))
imageView.contentMode = .scaleAspectFit
imageView.tintColor = .white
homeHandle.accessoryView = imageView
homeHandle.accessoryViewEdgeInsets = UIEdgeInsets(top: 2, left: 4, bottom: 4, right: 4)

colorPicker.addHandle(homeHandle)

Installation

Carthage

github "joncardasis/ChromaColorPicker"

Cocoapods

pod 'ChromaColorPicker'

Manually

Add all files from the Source folder to your project.

Components

Component Description
ChromaColorPicker An HSB color picker with support for adding multiple color selection handles.
ChromaBrightnessSlider 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

Both ChromaBrightnessSlider and ChromaColorPicker conform to UIControl. Each send UIControlEvents which can be observed via via UIControl's addTarget method.

ChromaColorPicker

Event Description
.valueChanged Called whenever the color has changed.
.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
brightnessSlider.addTarget(self, action: #selector(sliderDidValueChange(_:)), for: .valueChanged)

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

License

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