一个简单的涂鸦Demo,实现了撤回以及橡皮檫功能的简单操作。(自己在基础上慢慢优化)
下载链接
https://github.com/kuangshiliunian/doodle
简单使用导入DrawView.h
//涂鸦视图
DrawView* drawView = [[DrawView alloc] initWithFrame:[UIScreen mainScreen].bounds];
//涂鸦背景板
drawView.backgroundColor = [UIColor redColor];
//添加至要显示的界面
[self.view addSubview:drawView];
网友评论