Skip to content

nakiostudio/NKOColorPickerView-Example

Repository files navigation

NKOColorPickerView

A block based and easy to use Color Picker View for iOS.

Installation

The best way to integrate NKOColorPickerView in your project is with CocoaPods. You can find more info about this dependency manager here. Just add the following line to your Podfile.

pod 'NKOColorPickerView'

How to get started

NKOColorPickerView can be added to your controller's view using Interface Builder or programmatically with the following code:

//Color did change block declaration
NKOColorPickerDidChangeColorBlock colorDidChangeBlock = ^(UIColor *color){
	//Your code handling a color change in the picker view.
};
    
NKOColorPickerView *colorPickerView = [[NKOColorPickerView alloc] initWithFrame:CGRectMake(0, 0, 300, 340) color:[UIColor blueColor] andDidChangeColorBlock:colorDidChangeBlock];
    
//Add color picker to your view
[self.view addSubview:colorPickerView];

Screenshot

iPhone

Component project

NKOColorPickerView project

About

NKOColorPickerView sample implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published