Skip to content

malt03/ColorPickerView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ColorPickerView

Platform Language Carthage compatible CocoaPods License

Usage

Initialize

@IBOutlet weak var pickerView: ColorPickerView! {
  didSet { pickerView.delegate = self }
}

Pick

func colorPicker(colorPicker: ColorPickerView, didPickColor color: UIColor, touchPoint point: CGPoint) {
  view.backgroundColor = color
}

Installation via Carthage

ColorPickerView is available through Carthage. To install it, simply add the following line to your Cartfile:

github "malt03/ColorPickerView"

Installation via CocoaPods

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

pod "ColorPickerView"

Author

Koji Murata, malt.koji@gmail.com

License

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