矩阵操作

    xiaoxiao2021-04-15  41

    ###矩阵操作的简单用法

    - (void)drawRect:(CGRect)rect { //获取上下文 CGContextRef ctx = UIGraphicsGetCurrentContext(); //设置矩阵操作,必须放在绘制图形之前:矩阵操作是对整个layer进行操作 CGContextRotateCTM(ctx, M_PI_4);//旋转 CGContextScaleCTM(ctx, 0.8, 0.8);//放大缩小 CGContextTranslateCTM(ctx, 50, 50);//平移 CGContextAddRect(ctx, CGRectMake(200, 100, 100, 100)); CGContextStrokePath(ctx); }
    转载请注明原文地址: https://ju.6miu.com/read-670872.html

    最新回复(0)