Skip to content

Rakibrz/RzColorPickerView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RzColorPickerView

The best Color Picker Library is here..... You can set using RGB value & HexCode too use like a Photoshop Colors.

screenshot

screenshot1

= = = = = = = = = = = = = = = = = = = =

You can set Default color when Load the RzcolorPickerview as setting the value of CURRENTCOLOR.. example :

RzColorPickerView *colorPicker = [[RzColorPickerView alloc] initWithFrame:self.view.bounds]; [colorPicker setCurrentColor:[UIColor redColor]]; [self.view addSubview:colorPicker];

= = = = = = = = = = = = = = = = = = = =

To retrieve a selected Color from RzColorPickerView You have to use "doneWithSelectedColor:" to use the color in your UIColor Object example :

RzColorPickerView *colorPicker = [[RzColorPickerView alloc] initWithFrame:self.view.bounds];

[self.view addSubview:colorPicker];

[colorPicker doneWithSelectedColor:^(UIColor * _Nonnull newColor)

{

  UIColor *selectedColor = newColor;
  
  [self.view setBackgroundColor:selectedColor];

}];

About

The best Color Picker is here..... You can set using RGB value & HexCode too

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors