//
//  AView.m
//  AutoLayout
//
//  Created by ZhuYi on 16/5/24.
//  Copyright © 2016年 ZY. All rights reserved.
//

#import "AView.h"

@implementation AView

// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.

- (void)drawRect:(CGRect)rect {
    // Drawing code
    UIImage *image = [UIImage imageNamed:@"dropdown_anim__0005"];
    [image drawInRect:CGRectMake(, , rect.size.width, rect.size.height)];
//    [image drawAsPatternInRect:CGRectMake(0, 0, rect.size.width, rect.size.height)];

}

/**
 *      画三角形
 */
void drawTriangel(){
    //获得当前图形的上下文
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    //设置七点
    CGContextMoveToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    //    CGContextAddLineToPoint(ctx, 0, 0);
    //关闭路径
    CGContextClosePath(ctx);
//    [[UIColor redColor] setFill];
//    [[UIColor redColor] set];
    CGContextSetRGBFillColor(ctx, , , , );
    CGContextFillPath(ctx);
}
/**
 *      画矩形
 */
void drawRect(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextAddRect(ctx, CGRectMake(, , , ));
//    [[UIColor redColor] setStroke];
    CGContextSetRGBStrokeColor(ctx, , , , );
    CGContextStrokePath(ctx);
}

/**
 *      设置状态
 */
void set(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    //设置开头和结尾的样式
    CGContextSetLineCap(ctx, kCGLineCapRound);
    //设置转折点的样式
    CGContextSetLineJoin(ctx, kCGLineJoinRound);

    CGContextMoveToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    CGContextSetLineWidth(ctx, );
    CGContextSetRGBStrokeColor(ctx, , , , );
    CGContextStrokePath(ctx);

    CGContextMoveToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    CGContextSetRGBStrokeColor(ctx, , , , );
    CGContextSetLineWidth(ctx, );
    CGContextStrokePath(ctx);
}
/**
 *      画椭圆
 */
void ellipse(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextSetRGBStrokeColor(ctx, , , , );
    CGContextSetLineWidth(ctx, );
    CGContextAddEllipseInRect(ctx, CGRectMake(, , , ));
    CGContextStrokePath(ctx);
}

/**
 *      画圆弧
 */
void arr(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextAddArc(ctx, , , , , -M_PI_4, );
    CGContextSetLineWidth(ctx, );
    CGContextSetRGBStrokeColor(ctx, , , , );
    CGContextStrokePath(ctx);
}
/**
 *      画圆弧
 */
void cusarr(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextMoveToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );
    CGContextAddArc(ctx, , , , M_PI_2, M_PI, );
    CGContextClosePath(ctx);
    CGContextFillPath(ctx);
}

/**
 *  画文字
 */
void drawText()
{
    // 1.获得上下文
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    // 2.画矩形
    CGRect cubeRect = CGRectMake(, , , );
    CGContextAddRect(ctx, cubeRect);
    // 3.显示所绘制的东西
    CGContextFillPath(ctx);

    // 4.画文字
    NSString *str = @"哈哈哈哈Good morning hello hi hi hi hi";
    //    [str drawAtPoint:CGPointZero withAttributes:nil];

    NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
    // NSForegroundColorAttributeName : 文字颜色
    // NSFontAttributeName : 字体
    attrs[NSForegroundColorAttributeName] = [UIColor redColor];
    attrs[NSFontAttributeName] = [UIFont systemFontOfSize:];
    [str drawInRect:cubeRect withAttributes:attrs];
}
void drawImage()
{
    // 1.取得图片
    UIImage *image = [UIImage imageNamed:@"me"];

    // 2.画
    //    [image drawAtPoint:CGPointMake(50, 50)];
    //    [image drawInRect:CGRectMake(0, 0, 150, 150)];
    [image drawAsPatternInRect:CGRectMake(, , , )];

    // 3.画文字
//    NSString *str = @"为xxx所画";
//    [str drawInRect:CGRectMake(0, 180, 100, 30) withAttributes:nil];
}
/**
 *  矩阵操作和上下文栈
 */
void juzhencaozuo(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    //保存上下文栈
    CGContextSaveGState(ctx);

    //矩阵操作
    CGContextRotateCTM(ctx, M_PI_4 * 0.3);
    CGContextScaleCTM(ctx, 0.5, 0.5);
    CGContextTranslateCTM(ctx, , );

    CGContextAddRect(ctx, CGRectMake(, , , ));

    CGContextStrokePath(ctx);

    //回复上下文栈
    CGContextRestoreGState(ctx);

    CGContextAddEllipseInRect(ctx, CGRectMake(, , , ));
    CGContextMoveToPoint(ctx, , );
    CGContextAddLineToPoint(ctx, , );

    // 矩阵操作
    //    CGContextScaleCTM(ctx, 0.5, 0.5);

    CGContextStrokePath(ctx);
}
/**
 *  裁剪
 */
void caijian(){
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    CGContextSaveGState(ctx);

    // 0.画圆
    CGContextAddEllipseInRect(ctx, CGRectMake(, , , ));
    // 裁剪
    CGContextClip(ctx);
    CGContextFillPath(ctx);

    // 1.显示图片
    UIImage *image = [UIImage imageNamed:@"me"];
    [image drawAtPoint:CGPointMake(, )];
}
/**
 *  刷帧
 */
- (void)setRadios:(float)radios{
    _radios = radios;
    [self setNeedsDisplay];
}
- (void)shuazhen{
    ) {
        self.radios = ;
    }
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextAddArc(ctx, , , self.radios, , M_PI * , );
    CGContextStrokePath(ctx);
}
@end

http://www.jianshu.com/p/734b34e82135

mmmmmmmm的更多相关文章

  1. Android 如何有效的解决内存泄漏的问题

    前言:最近在研究Handler的知识,其中涉及到一个问题,如何避免Handler带来的内存溢出问题.在网上找了很多资料,有很多都是互相抄的,没有实际的作用. 本文的内存泄漏检测工具是:LeakCana ...

  2. what is difference in (int)a,(int&)a,&a,int(&a) ?

    This interview question come from a famous communication firm of china. : ) #include <iostream> ...

  3. JAVA基础学习day13--String、StringBuilder与StringBuffer与包装类

    一.String 1.1.String String 类是final修饰的,是顶级类,不可被继承 String 类代表字符串.Java 程序中的所有字符串字面值(如 "abc" ) ...

  4. C/C++中float和double的存储结构

    int main (int argc, char **argv) { float a = 1.0f; cout <<"(int&)a = "<<(i ...

  5. Pictures of Ascii Art

    简述 指尖上的艺术 - 通过键盘上韵律般的敲敲打打,一幅幅美轮美奂的艺术作品便跃然于屏. 这样的画作,包含了无穷的创意,糅合了现代计算机科技与传统绘画艺术,难道还有比这更令人陶醉的美妙事物吗? 简述 ...

  6. UIProgressView-初识IOS

    好几天没更新了,学的时候太紧,没时间复习了都.今天刚好有时间,多更几个. 今天复习的是UIProgressView,我们常见使用在修改某些属性的时候经常用到,比如透明度,今天我们介绍一个简单的使用例子 ...

  7. 项目必备!永无 bug 注释

    佛祖保佑 永无bug 代码注释 // // _oo0oo_ // o8888888o // 88" . "88 // (| -_- |) // 0\ = /0 // ___/`-- ...

  8. C语言中,float在内存中的储存方式

    浮点型变量在计算机内存中占用4字节(Byte),即32-bit. 遵循IEEE-754格式标准. 一个浮点数由2部分组成:底数m 和 指数e. ±mantissa × 2exponent (注意,公式 ...

  9. GPS坐标转换 百度地图API调用

    1 如果GPS输出的值是DD.DDDDDDDD格式的,直接调用地图API的转换函数处理,就可以正常显示2 如果GPS输出的值是DD.MMMMMMMM格式的,就需要先进行分转度处理,然后再调API,就可 ...

随机推荐

  1. python学习之路二(字符串,字典,序列和元组)

    # -*- coding: utf-8 -* ''' Created on 2013-7-26 @author: lixingle ''' #!/usr/bin/python import math# ...

  2. WCF/WPF公司内部订餐程序开发

    WCF/WPF公司内部订餐程序开发 (服务端篇) 上班的第一天,群里讨论关于订餐的问题,所以想到了要不要自己开发一个公司内部的订餐系统呢?方便公司内部员工的订餐,有了想法就简单的实践了下 . 实现还是 ...

  3. ios学习笔记之UIViewControl生命周期

    提到UIViewcontrol,每个人都不会陌生吧!平时实际开发中,每天的实际开发应该都少不了它.学过android的各位亲,也对生命周期这四个字并不陌生,无论是activity,还是service, ...

  4. Weka 开发[1]-Instances类

    先google一下,把Weka软件下载下来,安装完成之后,在Weka的安装目录中有一个weka.jar的包. 把包添加到工程中后,就可以调用weka中的函数了. 再介绍一点weka的基本知识,在wek ...

  5. javascript生成自定义的arcgis simpletoolbar

    javascript生成自定义的arcgis simpletoolbar 最近在学习ARCGIS for Javascript过程中,在ESRI的在线帮助上看见了这样一个示例,查看源码后,觉得左侧工具 ...

  6. 百度地图定位SDK 之构想

    百度地图定位 前提 从香港旅游回来,心中油然升起一股热血滂湃,激励自己发现市场需求,向创业奋进,朝着梦想前进. 简介 百度Android定位SDK支持Android1.5以及以上设备,提供: 定位功能 ...

  7. MVC+Front Controller

    MVC+Front Controller 在我前面一篇博文<逃脱Asp.Net MVC框架的枷锁,使用Razor视图引擎>发表之后,很多人关心,脱离了之后怎么办?那么这可以说是它的续篇了. ...

  8. ACM 位运算

    的幂 boolean power2(int x) { return((x&(x-1))==0)&&(x!=0): } For example: #include<stdi ...

  9. C++套接字类CxUdpSocket的设计

    C++套接字类CxUdpSocket的设计 这是一个小巧的C++套接字类,类名.函数名和变量名均采用匈牙利命名法.小写的x代表我的姓氏首字母(谢欣能),个人习惯而已,如有雷同,纯属巧合. CxUdpS ...

  10. 公共建筑能耗监测平台的GPRS通讯服务器的开发方法分享

    公共建筑能耗监测平台的GPRS通讯服务器的开发方法分享 在这个文章里面我将用一个实际的案例来分享如何来构建一个能够接受3000+个连接的GPRS通讯服务器软件,这个软件被我认为是一个艺术品,实现周期为 ...