WSColorPicker:iOS颜色拾取器

WSColorPicker:iOS颜色拾取器

Swift UI相关控件

访问GitHub主页

共29Star

详细介绍

WSColorPicker

iOS颜色拾取器

PhotoShoot

image

How To Use

WSColorImageView *ws = [[WSColorImageView alloc]initWithFrame:CGRectMake(self.view.frame.size.width/2-100, 300, 200, 200)];
[self.view addSubview:ws];

ws.currentColorBlock = ^(UIColor *color){

    label.textColor = color;
    view.backgroundColor = color;

};

推荐源码