标签:http io ar os sp on 2014 代码 ad
(1)效果
(2)代码下载
http://download.csdn.net/detail/wsb200514/8251841
(3)总结
——最主要的“画”的功能是在drawRect函数中完成,而所有路径或者点得拼接是在touchesBegan、touchesMoved和touchesEnded三个函数中完成的。
——每次修改后记得要setNeedsDisplay刷新。
——可以记录每个CGPoint点,然后用CGContextRef上下文画出来。
——也可以开启一个UIBezierPath,然后把CGPoint存在这个路径中,最后把这个UIbezierPath stroke出来即可。
——不管是用哪种方法,这些路径等都是存放在一个大得可变数组中,而可变数组的removeAllObject和removeLastObject可以实现清屏和撤销的操作。
【iOS开发-85】利用touch触摸事件:实现画板画画、撤销、清屏以及图片保存功能
标签:http io ar os sp on 2014 代码 ad
原文地址:http://blog.csdn.net/weisubao/article/details/41892847