码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 简单的使用drawRect 绘制

时间:2017-09-22 17:48:34      阅读:474      评论:0      收藏:0      [点我收藏+]

标签:view   oid   instance   使用   graphic   drawrect   super   http   gre   

1 。首先新建UIView一个类

技术分享

2 在UIView一个类.m 里面追加

- (instancetype)initWithFrame:(CGRect)frame{

self = [super initWithFrame:frame];
if (self) {
self.clearsContextBeforeDrawing = YES;
}
return self;
}
- (void)drawRect:(CGRect)rect {
[self drawCurve]; // 绘制心电图型
[self drawGrid]; //绘制心电图 背景网格
}
- (void)drawGrid{}

- (void)drawCurve{}

 

技术分享

 

注意在从新绘制画图时

  CGContextRef context = UIGraphicsGetCurrentContext();//获取上下文 知道你要画图的地方 (就是画布)

只有放在- (instancetype)initWithFrame:(CGRect)frame{ 里面才是好用的

3 之后在你的主画面里面引用

技术分享

 

 最后运行效果

技术分享

 

iOS 简单的使用drawRect 绘制

标签:view   oid   instance   使用   graphic   drawrect   super   http   gre   

原文地址:http://www.cnblogs.com/lanmaokomi/p/7575600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!