有时候我们须要自绘uiview以实现自己的需求,比方依据坐标点绘制出连续的曲线(股票走势图),就须要自绘uiview了。

原理:继承uiview类(customView),并实现custom view的drawRect即可。

首先看一下效果图:

代码例如以下:

// .h

#import <UIKit/UIKit.h>

@interface CustomView :
UIView

@end

//.m

#import "CustomView.h"

@implementation CustomView

-(id)initWithFrame:(CGRect)frame{

    //重写initWithFrame时,不要忘了以下一句

    self = [superinitWithFrame:frame];

    

    if (self) {

        self.backgroundColor = [UIColorwhiteColor];

    }

    

    return
self;

}

//重写drawRect方法(不须要调用)。绘制想要的图像

-(void)drawRect:(CGRect)rect{

 

    CGContextRef context =
UIGraphicsGetCurrentContext();//context:一块内存区域。将它看做当前view的画布即可了。

    NSDictionary *attribute = [NSDictionary
dictionaryWithObjectsAndKeys:[UIFont
systemFontOfSize:
15.0f],
NSFontAttributeName, [UIColor
redColor], 
NSForegroundColorAttributeName, nil];

    [@"股市走势图"
drawInRect,
,
)
withAttributes:attribute] ;//绘画标题

    

    //曲线

    CGContextMoveToPoint(context,
,
);

    CGContextAddLineToPoint(context,
,
);

    CGContextAddLineToPoint(context,
,
);

    CGContextAddLineToPoint(context,
,
);

    //CGContextStrokePath(context);

    

    //三角形

    CGContextMoveToPoint(context,
,
);

    CGContextAddLineToPoint(context,
,
);

    CGContextAddLineToPoint(context,
,
);

    CGContextClosePath(context);

    CGContextStrokePath(context);

    //CGContextFillPath(context);

    

    //矩形

    CGContextAddRect(context,
CGRectMake,
,
));

    [[UIColor
colorWithRed
green
blue
alpha]
set];

    //CGContextStrokePath(context);//空心

    CGContextFillPath(context);//实心

    

     //圆

    , , ,
, *M_PI,
);

    CGContextStrokePath(context);

}

@end

然后在须要用到该view的view controller的

viewDidLoad下加入西;以下代码就能够了!

CustomView *view = [[CustomView alloc]  initWithFrame:[UIScreen mainScreen].bounds];

[self.view addSubview view];

自己定义UIView以实现自绘的更多相关文章

  1. 关于UIView及其子类重绘drawRect

    转载自:https://nezha.gitbooks.io/ios-developmentarticles/content/UIView%E7%9A%84drawRect%E9%87%8D%E7%BB ...

  2. iOS----自定义UIView,绘制一个UIView

    绘制一个UIVIew最灵活的方式就是由它自己完成绘制.实际上你不是绘制一个UIView,你只是子类化了UIView并赋予子类绘制自己的能力.当一个UIVIew需要执行绘图操作的时,drawRect:方 ...

  3. 【Android】利用自己定义View的重绘实现拖动移动,获取组件的尺寸

    以下利用一个app来说明怎样利用自己定义View的重绘实现拖动移动.获取组件的尺寸. 例如以下图,触摸拖动,或者轻轻点击屏幕都能移动图片.假设碰到文字,则会弹出提示. 这里是利用自己定义View的重绘 ...

  4. UIView的剖析(转)

    转自:http://blog.csdn.net/mengtnt/article/details/6716289 前面说过UIViewController,但是UIView也是在MVC中非常重要的一层  ...

  5. UIView的生命周期和layout方法总结

    生命周期 1. loadView 什么时候调用? 每次访问UIViewController的view时候并且view == nil时候调用. 如何实现? 1> 如果在初始化UIViewContr ...

  6. 01-事件处理简介/UIView拖拽

    1.ios当中常见的事件?         触摸事件        加速计事件         远程控制事件2.什么是响应者对象?     继承了UIResponds的对象我们称它为响应者对象 UIA ...

  7. iOS之 重绘机制

    最近在看Core Animation , 今天来谈谈CALayer 和 UIView 中的重绘的一些认识: 我们都知道UIView里面有个成员layer,利用这个这个layer我们可以设置一些圆角,阴 ...

  8. 8. UIViewController

    1. UIViewController 的认识 UIViewController在iOS开发中占据很重要的位置,iOS的整个UI开发的核心思想也是MVC的架构,从UIViewController的命名 ...

  9. Swift - 键盘弹起,遮挡输入框

    extension LoginViewController:UITextFieldDelegate { func textFieldShouldReturn(textField: UITextFiel ...

随机推荐

  1. [HDU3240]Counting Binary Trees(不互质同余除法)

    Counting Binary Trees Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  2. 什么是ClassLoader

    ClassLoader 做什么的? 顾名思义,它是用来加载 Class 的.它负责将 Class 的字节码形式转换成内存形式的 Class 对象.字节码可以来自于磁盘文件 *.class,也可以是 j ...

  3. 【8.23校内测试】【贪心】【线段树优化DP】

    $m$的数据范围看起来非常有问题??仔细多列几个例子可以发现,在$m<=5$的时候,只要找到有两行状态按位$&$起来等于$0$,就是可行方案,如果没有就不行. #include<i ...

  4. PHP 日期的加减

  5. ES6 Javascript 实用开发技巧

    ES6 实用开发技巧 定义变量/常量 ES6 中新增加了 let 和 const 两个命令,let 用于定义变量,const 用于定义常量 两个命令与原有的 var 命令所不同的地方在于,let, c ...

  6. Nagios 监控mysqlserver具体实现过程

    ,之后在页面就能够看到监控效果了 參考文章:http://os.51cto.com/art/201409/452605.htm

  7. Dual transistor improves current-sense circuit

    In multiple-output power supplies in which a single supply powers circuitry of vastly different curr ...

  8. ArcGIS教程:编辑特征

    摘要 通过合并.又一次编号和删除类特征来编辑和更新特征文件. 使用方法 · 编辑特征工具同意您通过下面全部操作或某一操作来改动现有特征文件: 合并一组特征类 又一次编号特征类 ID 删除不须要的特征 ...

  9. linux里install命令和cp命令的区别

    转:http://blog.yikuyiku.com/?p=2659 基本上,在Makefile里会用到install,其他地方会用cp命令. 它们完成同样的任务——拷贝文件,它们之间的区别主要如下: ...

  10. matlab画直线,指定斜率与x坐标范围

    闲话不说,直接上代码与图的效果!