HueKit is a UI framework for iOS that provides components and utilities for building color pickers. Since each app may want a custom color picker, the design of this framework is geared towards reusability and allows for great customization.
All components are marked open
, so they can be subclassed. Also, all components are marked @IBDesignable
, so they can be previewed in Interface Builder. Components that provide user interaction are subclassed from UIControl
, you can observe a change in value by using @IBAction
.
To install, add the following line to your Podfile
:
pod 'HueKit', '~> 1.0'
To install, add the following line to your Cartfile
:
github "louisdh/huekit" ~> 1.0
Run carthage update
to build the framework and drag the built HueKit.framework
into your Xcode project.
- iOS 10.0+
- Xcode 9.3+
- Add tests
- Add documentation
This project is available under the MIT license. See the LICENSE file for more info.