SVColorPicker is a lightweight color picker library written in swift. User will be presented with a slider and on sliding, user can select required color.
- Xcode 8
- Swift 3
- iOS 10+
To integrate SVColorPicker into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod ’SVColorPicker’, '2.0.1'
end
Then, run the following command:
$ pod install
- Download SVColorPicker.
- Drag and drop SVColorPicker directory to your project
For including color picker in your view, add the following code
let colorPickerframe = __REQUIRED_FRAME__
let colorPicker = ColorPickerView(frame: colorPickerframe)
colorPicker.colorChangeBlock = { color in
//Use color and do the requied.
}
self.view.addSubview(colorPicker)
sarath, sarathvijayp@gmail.com
SVColorPicker is available under the MIT license. See the LICENSE file for more info.