01-CALayer创建+代理设置

复制代码
//
//  ViewController.m
//  01-CALayer创建
//
//  Created by mac on 16/4/18.
//  Copyright © 2016年 mac. All rights reserved.
//
/*
 1. position:确定当前图层的锚点到父视图层坐标到原点的相对偏移量,在当前图层上找出锚点位置,将两者对齐
 2. 绘制直线三部曲:创建可变路径(pathCreateMutable) : 添加到context(addPath) :开始绘制(drawPath)
                 途径阶段2:起始点确定,  属性设置(线宽和颜色)
 */

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    [self creatCALayer];
}

/**
 *  创建CALayer
 */
/*
- (void)creatCALayer {
    
    CALayer *layer = [CALayer layer];
    
    layer.bounds = CGRectMake(0, 0, 200, 200); //position和锚点决定位置,bounds决定大小
//    layer.frame = CGRectMake(0, 0, 200, 200); //frame属性对于layer的约束只是大小约束,位置是由anchorPoint决定
    layer.backgroundColor = [UIColor orangeColor].CGColor;
    
    [self.view.layer addSublayer:layer];
    
    layer.position = CGPointMake(100, 300);
    layer.anchorPoint = CGPointZero;
}*/

- (void)creatCALayer {
    
    CALayer *layer = [CALayer layer];
    
    layer.bounds = CGRectMake(0, 0, 200, 200); //position和锚点决定位置,bounds决定大小
    layer.backgroundColor = [UIColor orangeColor].CGColor;
    layer.anchorPoint = CGPointZero;
    layer.delegate = self;
    [self.view.layer addSublayer:layer];
    
    [layer setNeedsDisplay];
}

/**
 *  layer的代理方法。只有设置了代理才能调用此方法
 */
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx {
    
//    NSLog(@"hahahha");
    
    CGMutablePathRef path = CGPathCreateMutable(); //1. 在图层中绘制一条线 path获取
    
    CGPathMoveToPoint(path, NULL, 50, 50); //2. 起点
    CGPathAddLineToPoint(path, NULL, 150, 150);//连线点
    
//    [[UIColor yellowColor] setStroke];
    CGContextSetRGBStrokeColor(ctx, 0, 1, 1, 1);//3. stoke线颜色
    CGContextSetLineWidth(ctx, 5);//线宽
    
    CGContextAddPath(ctx, path);//4. path添加到context
    CGContextDrawPath(ctx, kCGPathStroke);//5. 绘制
}
复制代码

 

posted on   爱你久久iOS  阅读(241)  评论(0编辑  收藏  举报

编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示