iOS 画图讲解
5、画图
(1)画线
//绘图代码写在drawRect里,view加载完成,需要显示的时候调用
//1、获取图形上下文 2、创建路径 3、把图形放入上下文 4、渲染上下文
//drawRect的rect是绘制View的bounds
//重绘
[self setNeedsDisplay];
set = setStroke(描边) + setFill(填充)
//方法一:最原始的方法
//1、获取图形上下文,CG,CoreGraphics,有关图形的框架,开发mac也可以用
CGContextRef ctx = UIGraphicsGetCurrentContext();
//2、创建路径
CGMutablePathRef path = CGPathCreateMutable();
//设置起始点
CGPathMoveToPoint(path, NULL, 50, 50);
//画线到某一点
CGPathAddLineToPoint(path, NULL, 200, 200);
//3、把图形放入上下文
CGContextAddPath(ctx, path);
//4、渲染上下文
CGContextStrokePath(ctx);
//绘图的第二种方法
- (void)drawLine2 {
CGContextRef ctx = UIGraphicsGetCurrentContext();
//设置起始点
CGContextMoveToPoint(ctx, 50, 50);
//画线并设置终点
CGContextAddLineToPoint(ctx, 200, 200);
//渲染上下文
CGContextStrokePath(ctx);
}
//第三种方法
- (void)drawLine3 {
//贝塞尔线,UIKit
//创建路径
UIBezierPath * path = [UIBezierPath bezierPath];
//设置起点
[path moveToPoint:CGPointMake(50, 50)];
//画线并设置终点
[path addLineToPoint:CGPointMake(200, 200)];
//绘制路径
[path stroke];
}
//属性
- (void)drawCtxState {
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
CGContextAddLineToPoint(ctx, 100, 50);
// CGContextMoveToPoint(ctx, 80, 60);
//默认下一根线的起点就是上一根线的终点
CGContextAddLineToPoint(ctx, 100, 200);
//设置线宽度
CGContextSetLineWidth(ctx, 5);
//设置连接样式
CGContextSetLineJoin(ctx, kCGLineJoinRound);
//设置顶角样式
CGContextSetLineCap(ctx, kCGLineCapRound);
//设置线的颜色
[[UIColor redColor] setStroke];
CGContextStrokePath(ctx);
}
//画曲线
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
//画曲线 arg1 上下文 arg2,3 控制点x,y arg4,5 终点x,y
CGContextAddQuadCurveToPoint(ctx, 100, 100, 250, 50);
CGContextStrokePath(ctx);
}
(2)画图形
//画矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 200, 200)];
//画圆角矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 20, 200, 200) cornerRadius:100];
//画圆弧
//Center 圆弧中心
//radius 圆弧半径
//startAngle 起始角度
//endAngle 结束角度
//clockwise YES 顺时针 NO 逆时针
CGPoint center = CGPointMake(125, 125);
UIBezierPath * path = [UIBezierPath bezierPathWithArcCenter:center radius:100 startAngle:0 endAngle:M_PI_2 clockwise:NO];
[path addLineToPoint:center];
//封闭路径
[path closePath];
[path stroke];
//要使用setFill,路径一定是封闭的
[[UIColor greenColor] setFill];
[path fill];
//画椭圆
UIBezierPath * path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 50, 200, 100)];
[path stroke];
}
6、绘制图片和文字
(1)绘制图片
- (void)drawPicture {
//图片裁剪,超出部分全部剪掉
UIRectClip(CGRectMake(0, 0, 50, 50));
UIImage * image = [UIImage imageNamed:@"01"];
//根据rect拉伸图片
[image drawInRect:CGRectMake(0, 0, 100, 100)];
[image drawInRect:rect];
//显示原图片尺寸
[image drawAtPoint:CGPointZero];
//平铺绘图
[image drawAsPatternInRect:rect];
}
(2)绘制文字
- (void)drawRect:(CGRect)rect {
// Drawing code
NSString * string = @"hgfdagskjhdcadkhdkjlashkdklhahgfdagskjhdcad";
NSShadow * shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor yellowColor];
shadow.shadowOffset = CGSizeMake(5, 5);
//模糊度
shadow.shadowBlurRadius = 3;
NSDictionary * dict = @{NSFontAttributeName:[UIFont systemFontOfSize:30],
NSForegroundColorAttributeName:[UIColor redColor],
NSStrokeColorAttributeName:[UIColor blueColor],
NSStrokeWidthAttributeName:@(2),
NSShadowAttributeName: shadow};
//不会换行
[string drawAtPoint:CGPointZero withAttributes:nil];
[string drawInRect:rect withAttributes:dict];
}
5、画图
(1)画线
//绘图代码写在drawRect里,view加载完成,需要显示的时候调用
//1、获取图形上下文 2、创建路径 3、把图形放入上下文 4、渲染上下文
//drawRect的rect是绘制View的bounds
//重绘
[self setNeedsDisplay];
set = setStroke(描边) + setFill(填充)
//方法一:最原始的方法
//1、获取图形上下文,CG,CoreGraphics,有关图形的框架,开发mac也可以用
CGContextRef ctx = UIGraphicsGetCurrentContext();
//2、创建路径
CGMutablePathRef path = CGPathCreateMutable();
//设置起始点
CGPathMoveToPoint(path, NULL, 50, 50);
//画线到某一点
CGPathAddLineToPoint(path, NULL, 200, 200);
//3、把图形放入上下文
CGContextAddPath(ctx, path);
//4、渲染上下文
CGContextStrokePath(ctx);
//绘图的第二种方法
- (void)drawLine2 {
CGContextRef ctx = UIGraphicsGetCurrentContext();
//设置起始点
CGContextMoveToPoint(ctx, 50, 50);
//画线并设置终点
CGContextAddLineToPoint(ctx, 200, 200);
//渲染上下文
CGContextStrokePath(ctx);
}
//第三种方法
- (void)drawLine3 {
//贝塞尔线,UIKit
//创建路径
UIBezierPath * path = [UIBezierPath bezierPath];
//设置起点
[path moveToPoint:CGPointMake(50, 50)];
//画线并设置终点
[path addLineToPoint:CGPointMake(200, 200)];
//绘制路径
[path stroke];
}
//属性
- (void)drawCtxState {
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
CGContextAddLineToPoint(ctx, 100, 50);
// CGContextMoveToPoint(ctx, 80, 60);
//默认下一根线的起点就是上一根线的终点
CGContextAddLineToPoint(ctx, 100, 200);
//设置线宽度
CGContextSetLineWidth(ctx, 5);
//设置连接样式
CGContextSetLineJoin(ctx, kCGLineJoinRound);
//设置顶角样式
CGContextSetLineCap(ctx, kCGLineCapRound);
//设置线的颜色
[[UIColor redColor] setStroke];
CGContextStrokePath(ctx);
}
//画曲线
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
//画曲线 arg1 上下文 arg2,3 控制点x,y arg4,5 终点x,y
CGContextAddQuadCurveToPoint(ctx, 100, 100, 250, 50);
CGContextStrokePath(ctx);
}
(2)画图形
//画矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 200, 200)];
//画圆角矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 20, 200, 200) cornerRadius:100];
//画圆弧
//Center 圆弧中心
//radius 圆弧半径
//startAngle 起始角度
//endAngle 结束角度
//clockwise YES 顺时针 NO 逆时针
CGPoint center = CGPointMake(125, 125);
UIBezierPath * path = [UIBezierPath bezierPathWithArcCenter:center radius:100 startAngle:0 endAngle:M_PI_2 clockwise:NO];
[path addLineToPoint:center];
//封闭路径
[path closePath];
[path stroke];
//要使用setFill,路径一定是封闭的
[[UIColor greenColor] setFill];
[path fill];
//画椭圆
UIBezierPath * path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 50, 200, 100)];
[path stroke];
}
6、绘制图片和文字
(1)绘制图片
- (void)drawPicture {
//图片裁剪,超出部分全部剪掉
UIRectClip(CGRectMake(0, 0, 50, 50));
UIImage * image = [UIImage imageNamed:@"01"];
//根据rect拉伸图片
[image drawInRect:CGRectMake(0, 0, 100, 100)];
[image drawInRect:rect];
//显示原图片尺寸
[image drawAtPoint:CGPointZero];
//平铺绘图
[image drawAsPatternInRect:rect];
}
(2)绘制文字
- (void)drawRect:(CGRect)rect {
// Drawing code
NSString * string = @"hgfdagskjhdcadkhdkjlashkdklhahgfdagskjhdcad";
NSShadow * shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor yellowColor];
shadow.shadowOffset = CGSizeMake(5, 5);
//模糊度
shadow.shadowBlurRadius = 3;
NSDictionary * dict = @{NSFontAttributeName:[UIFont systemFontOfSize:30],
NSForegroundColorAttributeName:[UIColor redColor],
NSStrokeColorAttributeName:[UIColor blueColor],
NSStrokeWidthAttributeName:@(2),
NSShadowAttributeName: shadow};
//不会换行
[string drawAtPoint:CGPointZero withAttributes:nil];
[string drawInRect:rect withAttributes:dict];
}
iOS 画图讲解的更多相关文章
- iOS 画图讲解2
1.图片水印 //layer上下文只能显示在drawRect里 //当开启上下文时,绘制图形即可在viewDidLoad中实现 //位图的上下文 //UIGraphicsBeginImageConte ...
- IOS NSUserDefaults 讲解 用法
IOS NSUserDefaults 讲解 用法 NSUserDefaults适合存储轻量级的本地数据,比如要保存一个登陆界面的数据,用户名.密码之类的,个人觉得使用NSUserDefaults ...
- iOS开发讲解SDWebImage,你真的会用吗?
SDWebImage作为目前最受欢迎的图片下载第三方框架,使用率很高.但是你真的会用吗?本文接下来将通过例子分析如何合理使用SDWebImage. 使用场景:自定义的UITableViewCell上有 ...
- 利用IOS画图功能画出五角星,并且可以调整五角星的填充范围
我们要花的为一个黄色的五角星并且其中的填充黄色能够任意调整,比如只填满半个五角星,或者只填满一个角等等. 首先要重写DrawRect 方法,然后在这里实现我们的画图代码. - (void)drawRe ...
- iOS 画图基础
基础要点: 1,画图不可以在 ViewController 里,而是应该在一个 UIView 的子类中,比如新建一个 DrawView 继承自 UIView. 2,覆盖 UIView 的 drawRe ...
- ios 画图总结
0 CGContextRef context = UIGraphicsGetCurrentContext(); 设置上下文1 CGContextMoveToPoint 开始画线2 CGContextA ...
- ios 深入讲解iOS键盘一:控制键盘隐藏显示
在iOS的开发中,我们一般使用UITextField.UITextView处理文字输入等操作,大部分情况下我们只需要一两行代码去手动管理键盘的显示隐藏:让UITextField或UITextView成 ...
- ios开发讲解之anchorPoint和position详解
引言 相信初接触到CALayer的人都会遇到以下几个问题: 为什么修改anchorPoint会移动layer的位置? CALayer的position点是哪一点呢? anchorPoint与posi ...
- iOS 谓词讲解
1.NSPredicate (1)比较运算符 1.比较运算符 > .< .== . >= .<= . != 运算符还可以跟逻辑运算符一起使用,&& , || ...
随机推荐
- Java抽象类和内部类
类(class) 类是相似对象中共同属性和方法的集合体 在面向对象中定义类,就是在描述事物,就是在定义属性(变量)和行为(方法).属性和行为共同成为类中的成员(成员变量和成员方法). 封装.继承和多态 ...
- POJ 1852 Ants (等价思考)
题意:在一根杆上有 n 只蚂蚁,速度为1,方向不定,如果相碰,则反向运动,问你最长的时间和最短时间,所有蚂蚁都掉下杆去. 析:换个方法想,如果两只蚂蚁相碰了,会有什么现象?其实就和没有碰撞是一样的,没 ...
- hdoj 5402 Travelling Salesman Problem
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5402 类似于黑白棋盘,有的格子是可以不走的,有的格子是不能不走的,对于m或n中有一个奇数的情况, 所有 ...
- Jmeter_初步认识随笔
1. 简介 Apache JMeter是100%纯java桌面应用程序,被设计用来测试客户端/服务器结构的软件(例如web应用程序).它可以用来测试包括基于静态和动态资源程序的性能,例如静态文件,Ja ...
- 对于 Javascript 闭包理解
一.变量的作用域 要理解闭包,首先必须理解Javascript特殊的变量作用域. 变量的作用域无非就是两种:全局变量和局部变量. Javascript语言的特殊之处,就在于函数内部可以直接读取全局变量 ...
- CountDownLatch和CyclicBarrier的区别
[CountDownLatch.CyclicBarrier和Semaphore]http://www.cnblogs.com/dolphin0520/p/3920397.html [CountDo ...
- VC、MFC中设置控件的背景色、标题、字体颜色、字体要注意的地方[转]
在MFC中设置控件的背景色.字体.字体颜色.标题等属性主要是利用OnCtlColor函数来实现. 如: HBRUSH CAlarm::OnCtlColor(CDC* pDC, CWnd* pWnd, ...
- Flex data
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="ht ...
- JavaScript要点(十七) Math 对象
来源:JavaScript 参考手册 Math 对象 Math 对象用于执行数学任务. Math 对象并不像 Date 和 String 那样是对象的类,因此没有构造函数 Math(). 语法 var ...
- 毕业设计--天气预报App
9月中旬,开始动手做我的毕业设计了,之前一直在纠结做啥,后来想想,既然是做毕业设计,那就大胆地做点自己没接触过的东西吧.然后网上查找资料得知做天气预报需要用到开放的API,而且要用那种现在还在维护的, ...