Skip to content
This repository has been archived by the owner on Apr 11, 2022. It is now read-only.

Vectorworks/mobile-ios-VCSSColorPicker

 
 

Repository files navigation

ColorPicker

Build Status Carthage compatible Version License Platform

This is the simple color picker for iOS.

color-picker

Usage

class ViewController: UIViewController, ColorPickerViewDelegate {

    @IBOutlet weak var colorPicker: ColorPickerView!

    override func viewDidLoad() {
        super.viewDidLoad()

        // Set delegate of color picker
        colorPicker.delegate = self
    }

    func colorPickerDidSelectColor(_ colorPicker: ColorPickerView) {
      // Can get the selected color from the color picker
      let color = colorPicker.selectedColor
    }
}

Example

To run the example project, open the Example/Example.xcworkspace.

Installation

ColorPicker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'CULColorPicker'

Add the following line to your Cartfile:

github "culumn/ColorPicker"

Requirements

  • iOS 9.0+
  • Xcode 10.0
  • Swift 4.2

Author

culumn, @culumn

License

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 97.8%
  • Objective-C 2.2%