Giter VIP home page Giter VIP logo

chromacolorpicker's Introduction

ChromaColorPicker ๐ŸŽจ

Supported Version Platform License Carthage CocoaPods

An intuitive iOS color picker built in Swift.

Supports hue and grayscale modes to make choosing the right color easy and fun!

Installation

Carthage

github "joncardasis/ChromaColorPicker"

Cocoapods

pod 'ChromaColorPicker'

Manually

Add all files from the ChromaColorPicker folder to your project.

Examples

let neatColorPicker = ChromaColorPicker(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
neatColorPicker.delegate = self //ChromaColorPickerDelegate
neatColorPicker.padding = 5
neatColorPicker.stroke = 3
neatColorPicker.hexLabel.textColor = UIColor.white

view.addSubview(neatColorPicker)

If the ChromaColorPicker or any of its properties are later updated after being added to a view, the layout() function should be called to update the view.

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

neatColorPicker.padding = 0
neatColorPicker.hexLabel.hidden = true

neatColorPicker.layout()

You can also set the color of the picker anytime by using the adjustToColor(color:) function.

let neatColorPicker = ChromaColorPicker(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
...
neatColorPicker.adjustToColor(UIColor.green)
...

Enable Grayscale Support

A toggle button can be enabled/disabled to allow for grayscale selections by using the supportsShadesOfGray property.

let neatColorPicker = ChromaColorPicker(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
...
neatColorPicker.supportsShadesOfGray = true // Normally false be default

Customization

Properties

Property Description
delegate ChromaColorPickerDelegate
padding The padding on each side of the view (default=10)
stroke The stroke of the rainbow track (default=1)
currentColor The currently set color by the control. It is displayed in the add button. Use adjustToColor(color: UIColor) to update the color.
currentAngle The angle which the handle is currently sitting at. Can be changed and the view can be re-drawn using layout() to show the change.
handleSize Returns the size of the handle.
supportsShadesOfGray True/False if a toggle for supporting grayscale colors should be shown.

Functions

Function Description
layout() Layout the entire picker and all its subviews.
adjustToColor(color: ) Updates the picker to a specific color.

Sub-Components

Sub-Components can be hidden and customized to the preferred liking.

Component Description
hexLabel A UILabel which displays the hex value of the current color.
shadeSlider A custom slider which adjusts the shade of the current color.
addButton A custom UIButton in the center of the control. The colorPickerDidChooseColor(colorPicker: color:) delegate function is called when this is tapped.
handleView A ChromaHandle (custom UIView) which displays the current color and can be moved around the circle.
handleLine A line which is drawn from the addButton to the handleView.
colorToggleButton A custom UIButton which appears if supportsShadesOfGray is set to true and will switch the picker to a grayscale mode if pressed.

Supported UIControlEvents

.touchDown -> called when the handle is first grabbed

.touchUpInside -> called when handle is let go

.valueChanged -> called whenever the color has changed hue or shade

.touchDragInside -> called when the handle has moved by a drag action

.editingDidEnd -> called when either the handle is let go or slider is let go

Additional Info

Check out the Wiki if you're interested in reading into how the color wheel was created.

License

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

chromacolorpicker's People

Contributors

joncardasis avatar v-fexrt avatar jayvolr avatar manraajnijjar avatar valerianb avatar cloke avatar dimitrisbb avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.