IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)
先上效果图
一,项目建立
创建Single View Application项目,为项目添加类CustomPath CustomManager 都继承自NSObject,CustomView继承自UIView
1,CustomPath.h中内容:
@interface CustomPath : NSObject
//设置路径,路径颜色,路径宽度
@property(nonatomic,assign)CGMutablePathRef linePath;
@property (nonatomic,assign)CGFloat lineWidth;
@property (nonatomic,assign)CGColorRef lineColor;
@end
这个类主要记录线条数据,.m文件不用写内容
2,CustomManager是单例类,主要控制CustomPath属性等,在整个项目中数据共享,这里涉及到了单例,在.h文件中内容如下:
//单例前缀一般都为:signleton default instance shared
@interface CustomManager : NSObject
//单例方法
+(CustomManager *)defaultManager;
//存储路径的数组
@property (nonatomic,strong)NSMutableArray *pathList;
@end
在.m文件中,内容如下:
@implementation CustomManager
+(CustomManager *)defaultManager
{
@synchronized(self)
{
static CustomManager*s_CustomManager=nil;//静态对象,当再次实例化的时候,这句代码不起作用,这点和c语言静态数据类型一样.
if (s_CustomManager==nil) {//如果为nil,则是第一次初始化,执行下面的创建对象语句,如果不是nil则返回,这样就保证了单例一直是一个对象
s_CustomManager=[CustomManager new];
}
return s_CustomManager;
}
}
-(id)init //单例初始化的时候对其内部数据进行初始化
{
if(self=[super init])
{
self.pathList=[NSMutableArray new];
}
return self;
}
@end
3,CustomView文件控制画图操作
.h文件内容如下:
@interface CustomView : UIView
@property (nonatomic,retain)UIColor *lineColor;
@property (nonatomic,assign)NSInteger lineWidth;
//创建中间变量图片,用来存储每次的视图的截图,画图效率统一,没有程序运行的变化//缺点需要添加新技术,通过视图获取图片
@property (nonatomic,strong) UIImage *tempImage;
@property (nonatomic,assign)CGMutablePathRef totalPath;
-(UIImage *)getImageFromCurrentContext;
.m文件内容如下:
@implementation CustomView
{
//添加似有的成员变量,启动和结束的点
CGPoint startPoint;
CGPoint controlPoint;
CGPoint endPoint;
//声明路径私有成员变量,解决计算效率
CGMutablePathRef tempPath;
//每次触摸完成后的路径
CGMutablePathRef touchPath;
}
@synthesize lineColor;
@synthesize lineWidth;
@synthesize tempImage;
@synthesize totalPath;//声明全部路径变量,用来存储所有的中间变量
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
startPoint=CGPointZero;
controlPoint=CGPointZero;
endPoint=CGPointZero;
totalPath=CGPathCreateMutable();//创建全部路径对象存储空间
}
return self;
}
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
if (CGPointEqualToPoint(startPoint, CGPointZero)&&CGPointEqualToPoint(endPoint, CGPointZero)) {
return;
}
//获取当前画布
CGContextRef context=UIGraphicsGetCurrentContext();
for (CustomPath *itempath in [CustomManager defaultManager].pathList) {
CGContextSetLineCap(context, kCGLineCapRound);
CGContextSetLineWidth(context, itempath.lineWidth);
CGContextSetStrokeColorWithColor(context, itempath.lineColor);
CGContextAddPath(context, itempath.linePath);
CGContextStrokePath(context);
}
}
#pragma mark color
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
//每一次触摸屏幕的开始就是一个触摸路径的开始
touchPath=CGPathCreateMutable();
CustomPath *itemPath=[[CustomPath alloc]init];
itemPath.lineWidth=lineWidth;
itemPath.lineColor=lineColor.CGColor;
itemPath.linePath=touchPath;
[[CustomManager defaultManager].pathList addObject:itemPath];
UITouch *touch=[touches anyObject];
startPoint=[touch previousLocationInView:self];
controlPoint=[touch previousLocationInView:self];
endPoint=[touch locationInView:self];
//调用方法
//[self touchesMoved:touches withEvent:event];
}
//每当触摸的时候先获取触摸对象,下面添加两个触摸方法
//当手指触摸时,实现的方法
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch=[touches anyObject];
startPoint=controlPoint;//设置起点
controlPoint=[touch previousLocationInView:self];//设置控制点为前一个触摸点
endPoint=[touch locationInView:self];//设置中点为当前触摸点
//生成截图图片对象
tempImage=[self getImageFromCurrentContext];
//通知本视图,开始执行drawRect方法
tempPath=[self pathFromPoint:midPoint(startPoint, controlPoint) toPoint:midPoint(controlPoint, endPoint)];
//获取最小的能容纳路径的矩形体积
CGRect rect=CGPathGetBoundingBox(tempPath);
rect.origin.x-=15.f;
rect.origin.y-=15.f;
rect.size.height+=30.f;
rect.size.width+=30.f;
//将中间变量tempPath添加到全部路径变量totalPath内
CGPathAddPath(totalPath, NULL, tempPath);
//将中间变量tempPath添加到每一次的触摸路径touchPaht内
CGPathAddPath(touchPath, NULL, tempPath);
//修改最后的自定义path对象
CustomPath *itemPath=[[CustomManager defaultManager].pathList lastObject];
itemPath.linePath=touchPath;
//设置当前视图需要重绘的矩形区域
[self setNeedsDisplayInRect:rect];
//' [self setNeedsDisplay];
}
//当手指结束,实现的方法
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
CustomPath *itemPath=[[CustomManager defaultManager].pathList lastObject];
itemPath.linePath=touchPath;
}
-(UIImage *)getImageFromCurrentContext
{
//1开始创建图片画布
UIGraphicsBeginImageContext(self.bounds.size);
//2将视图的内容渲染到图片画布上
[self.layer renderInContext:UIGraphicsGetCurrentContext()];//当前画布不是视图画布
//3,通过图片画布获取图片
UIImage *result=UIGraphicsGetImageFromCurrentImageContext();
//4,结束图片画布
UIGraphicsEndImageContext();
return result;
}
static inline CGPoint midPoint(CGPoint point1,CGPoint point2)
{
CGFloat midx=(point1.x+point2.x)/2.0f;
CGFloat midy=(point2.y+point1.y)/2.0f;
return CGPointMake(midx, midy);
}
//获取坐标内的路径
-(CGMutablePathRef)pathFromPoint:(CGPoint)originPoint toPoint:(CGPoint)finalPoint
{
CGMutablePathRef path=CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, originPoint.x, originPoint.y);// 移动到出发点
//添加曲线,通过控制点到结束点
CGPathAddQuadCurveToPoint(path, NULL, controlPoint.x, controlPoint.y, finalPoint.x, finalPoint.y);
CFAutorelease(path);
return path;
}
@end
以上CustomView.m中的内容是重点,画图原理都在这个文件里.
4,最后在ViewController文件里调用以上内容
#import "CHViewController.h"
#import "CustomView.h"
#import "CustomPath.h"
#import "CustomManager.h"
@implementation CHViewController
{
NSInteger imgCount;
}
CustomView *cView;
UIImageView *v1,*v2,*v3,*v11,*v22,*v33;//六个视图声明变量
- (void)viewDidLoad
{
//初始状态图片个数为0
imgCount=0;
[super viewDidLoad];
//创建黑色容器视图,大小和根视图大小相同,位置以根视图坐标原点为起点
UIView *containerView=[[UIView alloc]initWithFrame:self.view.bounds];
containerView.backgroundColor=[UIColor orangeColor];
[self.view addSubview:containerView];
//标题view
UIView *titleView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 20)];
titleView.backgroundColor=[UIColor blackColor];
[titleView setAlpha:0.5];
[containerView addSubview:titleView];
cView=[CustomView new];
cView.frame=CGRectMake(10, 220, 300, 250);
cView.backgroundColor=[UIColor whiteColor];
cView.lineColor=[UIColor greenColor];
[containerView addSubview:cView];
//slider View and cancelButton saveButton
UISlider *slider=[[UISlider alloc]initWithFrame:CGRectMake(60, 20, 200, 40)];
slider.minimumValue=4;
slider.maximumValue=15;
[slider addTarget:self action:@selector(sliderMove:) forControlEvents:UIControlEventValueChanged];
[containerView addSubview:slider];
UIButton *cancelButton=[[UIButton alloc]initWithFrame:CGRectMake(0, 20, 60, 40)];
[cancelButton setTitle:@"撤销" forState:UIControlStateNormal];
[cancelButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[cancelButton addTarget:self action:@selector(cancelButtonOnClick:) forControlEvents:UIControlEventTouchDown];
[containerView addSubview:cancelButton];
UIButton *saveButton=[[UIButton alloc]initWithFrame:CGRectMake(260, 20, 60, 40)];
[saveButton setTitle:@"保存" forState:UIControlStateNormal];
[saveButton addTarget:self action:@selector(saveButtonOnClick:) forControlEvents:UIControlEventTouchDown];
[saveButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[containerView addSubview:saveButton];
///////绘图区
//图片区,六个UIImageView视图的显示属性设置
v1=[self imageView:CGRectMake(10, 70, 70, 70)];
v2=[self imageView:CGRectMake(115, 70, 70, 70)];
v3=[self imageView:CGRectMake(220, 70, 70, 70)];
v11=[self imageView:CGRectMake(10, 145, 70, 70)];
v22=[self imageView:CGRectMake(115, 145, 70, 70)];
v33=[self imageView:CGRectMake(220, 145, 70, 70)];
[containerView addSubview:v1];
[containerView addSubview:v2];
[containerView addSubview:v3];
[containerView addSubview:v11];
[containerView addSubview:v22];
[containerView addSubview:v33];
}
//六个UIImageView用于显示点击保存后的图片快照
-(UIImageView *)imageView:(CGRect)rect
{
UIImageView *v=[[UIImageView alloc]initWithFrame:rect];
v.backgroundColor=[UIColor whiteColor] ;
return v;
}
-(void)cancelButtonOnClick:(UIButton *)button
{
[[CustomManager defaultManager].pathList removeLastObject];
[cView setNeedsDisplay];
}
-(void)saveButtonOnClick:(UIButton *)button
{
imgCount++;
UIImage *image= [cView getImageFromCurrentContext];
UIImageWriteToSavedPhotosAlbum(image, Nil, Nil, Nil);
if (imgCount>6) {
imgCount=1;
}
switch (imgCount) {
case 1:
v1.image=image;
break;
case 2:
v2.image=image;
break;
case 3:
v3.image=image;
break;
case 4:
v11.image=image;
break;
case 5:
v22.image=image;
break;
case 6:
v33.image=image;
break;
}
}
//slider moved to change containerView's property
-(void)sliderMove:(UISlider*) slider
{
cView.lineWidth=slider.value;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)的更多相关文章
- IOS 作业项目(4)步步完成 画图 程序(中续)
一,程序布局整理 前言://1,程序启动//2,程序流程框架//3,程序界面一致//4,程序界面功能, //这里只做页面的固定功能, //在首次创建界面时,我们会指定好固定事件触发前的固定方法 //至 ...
- IOS 作业项目(4)步步完成 画图 程序(剧终)
// // CHViewController.m // SuperDrawingSample // // Created by JaikenLI on 13-11-21. // Copyrig ...
- IOS 作业项目(4)步步完成 画图 程序(问题处理)终结
一,解决换色程序崩溃问题 程序崩溃是因为颜色的内存被释放,添加如下类的内容即可 @implementation TuyaPath - (id)init { self = [super init]; i ...
- IOS 作业项目(4)步步完成 画图 程序(中)
一,承接上文,继续本文 [UIButton buttonWithType:UIButtonTypeRoundedRect]; 如此声明的按钮才会有点击闪动的效果!如果直接frame方式声明就不会有. ...
- IOS 作业项目(4)步步完成 画图 程序(上)
先上流程图
- IOS 作业项目 TableView两个section中cell置顶功能实现
点击cell会置顶,其他的下移
- IOS 作业项目(3) 霓虹灯效果
先上效果图 #import "CHViewController.h"@interface CHViewController (){ int i; int j;}@pro ...
- IOS 作业项目(1) 关灯游戏 (百行代码搞定)
1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor
- iOS重构项目之路
iOS重构项目之路 1.整理目录 按照功能模块对整个工程的目录进行分类,比如 2.整理资源文件 删除多余的图片文件,资源文件 图片资源尽量添加到Assets.xcassets中 删除项目中未引用的图片 ...
随机推荐
- memset,memcpy,memcmp用法
void* memset(void *s, int ch, size_t n); 将s所指向的某一块内存中的前n个字节的内容全部设置为ch指定的ASCII值. 例如:memset(lpMyStruct ...
- Linux GDB常用命令一栏
Linux GDB 常用命令如下: 1.启动和退出gdb (1)启动:gdb ***:显示一段版权说明: (*** 表示可执行程序名) (2)退出:quit.有的时候输入quit后会出现相关提示:类似 ...
- 164. Maximum Gap *HARD* -- 无序数组找出排序后连续元素的最大间隔
Given an unsorted array, find the maximum difference between the successive elements in its sorted f ...
- WCF学习笔记
1,关于WCF/web service/WSE Web Service:是行业标准,也就是Web Service 规范,也称作WS-*规范,既不是框架,也不是技术.它有一套完成的规范体系标准,而且在持 ...
- E-Eating Together(POJ 3670)
Eating Together Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 5579 Accepted: 2713 D ...
- 在JSP中使用jQuery的冲突解决(收集整理)
在JSP中使用<jsp:include page="somethingPage.jsp"></jsp>来嵌套页面的时候,会出现jQuery之间的冲突 解决办 ...
- httpClient 4.x post get方法
public static String doPost(String url, String encoding, String contentType, String sendData) throws ...
- ruby开源项目之Octopress:像黑客一样写博客(zhuan)
ruby开源项目之Octopress:像黑客一样写博客 百度权重查询 词库网 网站监控 服务器监控 SEO监控 Swift编程语言教程 今年一直推荐的一种写作方式.markdown语法快速成文,git ...
- 第三方开源框架的下拉刷新列表(QQ比较常用的)。
PullToRefreshListView是第三方开源框架下拉刷新列表,比较流行的QQ 微信等上面都在用. 下载地址(此开源框架于2013年后不再更新) 点此下载 package com.lixu.k ...
- 【转】HTML,CSS,font-family:中文字体的英文名称 (宋体 微软雅黑)
宋体 SimSun 黑体 SimHei 微软雅黑 Microsoft YaHei 微软正黑体 Microsoft JhengHei 新宋体 NSimSun 新细明体 PMingLiU 细明体 Ming ...