SkillAgentSearch skills...

RzColorPickerView

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

Install / Use

/learn @Rakibrz/RzColorPickerView
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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];
  

}];

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated3y ago
Forks1

Languages

Objective-C

Security Score

55/100

Audited on Sep 12, 2022

No findings