资源下载地址:https://download.csdn.net/download/sheziqiong/85838157
资源下载地址:https://download.csdn.net/download/sheziqiong/85838157
需要具备iOS绘画基础知识
下载代码后见文件PaintViewV01,看效果请在ViewController中找到PaintView,换成PaintView01
# import "PaintViewV01.h"
@implementation PaintViewV01{
//画的线路径的集合,内部是NSMutableArray类型
NSMutableArray *paths;
}
-(instancetype)init{
self = [super init];
if (self) {
//初始化uiview的样式
[self paintViewInit];
}
return self;
}
-(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
//初始化uiview的样式
[self paintViewInit];
}
return self;
}
//初始化paintViewInit样式和数据
-(void)paintViewInit{
//添加背景色
self.backgroundColor = [UIColor whiteColor];
//初始化路径集合
paths = [[NSMutableArray alloc]init];
}
-(void)drawRect:(CGRect)rect{
//必须调用父类drawRect方法,否则 UIGraphicsGetCurrentContext()获取不到context
[super drawRect:rect];
//获取ctx
CGContextRef ctx = UIGraphicsGetCurrentContext();
//渲染所有路径
for (int i=0; i<paths.count; i++) {
NSMutableArray *pathPoints = [paths objectAtIndex:i];
CGMutablePathRef path = CGPathCreateMutable();
for (int j=0; j<pathPoints.count; j++) {
CGPoint point = [[pathPoints objectAtIndex:j]CGPointValue] ;
if (j==0) {
CGPathMoveToPoint(path, &CGAffineTransformIdentity, point.x,point.y);
}else{
CGPathAddLineToPoint(path, &CGAffineTransformIdentity, point.x, point.y);
}
}
//路径添加到ct
CGContextAddPath(ctx, path);
//描边
CGContextStrokePath(ctx);
}
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
//创建一个路径,放到paths里面
NSMutableArray *path = [[NSMutableArray alloc]init];
[paths addObject:path];
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
//获取当前路径
NSMutableArray *path = [paths lastObject];
//获取当前点
CGPoint movePoint = [[touches anyObject]locationInView:self];
NSLog(@"touchesMoved x:%f,y:%f",movePoint.x,movePoint.y);
//CGPint要通过NSValue封装一次才能放入NSArray
[path addObject:[NSValue valueWithCGPoint:movePoint]];
//通知重新渲染界面,这个方法会重新调用UIView的drawRect:(CGRect)rect方法
[self setNeedsDisplay];
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
}
@end
完成后,就可以画画了,不过只能画固定粗细的黑色笔画,下面,我我们增加彩色笔画和控制粗细的功能
下载代码后见文件PaintViewV02,看效果请在ViewController中找到PaintView,换成PaintView02
增加一个数据对象,封装笔触pathPoint、笔触颜色、笔触粗细
# import <Foundation/Foundation.h>
# import <UIKit/UIKit.h>
@interface PaintStep : NSObject{
@public
//路径
NSMutableArray *pathPoints;
//颜色
CGColorRef color;
//笔画粗细
float strokeWidth;
}
@end
# import "PaintStep.h"
@implementation PaintStep
@end
paths 改名为 paintSteps,并增加currColor和slider两个变量
//屏幕的宽高,做自适应用的
# define width [UIScreen mainScreen].bounds.size.width
# define height [UIScreen mainScreen].bounds.size.height
@implementation PaintViewV02{
//画的线路径的集合,内部是NSMutableArray类型
NSMutableArray *paintSteps;
//当前选中的颜色
UIColor *currColor;
//当前笔触粗细选择器
UISlider *slider;
}
(void)paintViewInit 方法增加对两个方法的调用 —
-(void)paintViewInit 方法增加
....
//创建色板
[self createColorBord];
//创建笔触粗细选择器
[self createStrokeWidthSlider];
}
//创建色板
-(void)createColorBord{
//默认当前笔触颜色是黑色
currColor = [UIColor blackColor];
//色板的view
UIView *colorBoardView = [[UIView alloc]initWithFrame:CGRectMake(0, 20, width, 20)];
[self addSubview:colorBoardView];
//色板样式
colorBoardView.layer.borderWidth = 1;
colorBoardView.layer.borderColor = [UIColor blackColor].CGColor;
//创建每个色块
NSArray *colors = [NSArray arrayWithObjects:
[UIColor blackColor],[UIColor redColor],[UIColor blueColor],
[UIColor greenColor],[UIColor yellowColor],[UIColor brownColor],
[UIColor orangeColor],[UIColor whiteColor],[UIColor orangeColor],
[UIColor purpleColor],[UIColor cyanColor],[UIColor lightGrayColor], nil];
for (int i =0; i<colors.count; i++) {
UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake((width/colors.count)*i, 0, width/colors.count, 20)];
[colorBoardView addSubview:btn];
[btn setBackgroundColor:colors[i]];
[btn addTarget:self action:@selector(changeColor:) forControlEvents:UIControlEventTouchUpInside];
}
}
//切换颜色
-(void)changeColor:(id)target{
UIButton *btn = (UIButton *)target;
currColor = [btn backgroundColor];
}
//创建笔触粗细选择器
-(void)createStrokeWidthSlider{
slider = [[UISlider alloc]initWithFrame:CGRectMake(0, 50, width, 20)];
slider.maximumValue = 20;
slider.minimumValue = 1;
[self addSubview:slider];
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
PaintStep *paintStep = [[PaintStep alloc]init];
paintStep->color = currColor.CGColor;
paintStep->pathPoints = [[NSMutableArray alloc]init];
paintStep->strokeWidth = slider.value;
[paintSteps addObject:paintStep];
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
//获取当前路径
PaintStep *step = [paintSteps lastObject];
NSMutableArray *pathPoints = step->pathPoints;
....
}
-(void)drawRect:(CGRect)rect{
....
//渲染所有路径
for (int i=0; i<paintSteps.count; i++) {
....
//设置path 样式
CGContextSetStrokeColorWithColor(ctx, step->color);
CGContextSetLineWidth(ctx, step->strokeWidth);
//路径添加到ct
CGContextAddPath(ctx, path);
....
}
}
完成后,我们的画板就可以画出彩色的笔画,控制粗细了。之后,我会继续给画板增加一些功能,并把方法写出来。
资源下载地址:https://download.csdn.net/download/sheziqiong/85838157
资源下载地址:https://download.csdn.net/download/sheziqiong/85838157