zoukankan      html  css  js  c++  java
  • CAShapeLayer使用

       UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];

        [self.view addSubview:showView];

        showView.backgroundColor = [UIColor whiteColor];

        

        UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(100 / 2.f, 100 / 2.f)

                                                            radius:100 / 2.f

                                                        startAngle:0

                                                          endAngle:1.5*M_PI

                                                         clockwise:YES];

        

        CAShapeLayer *layer = [CAShapeLayer layer];

        layer.frame         = showView.bounds;                // 与showView的frame一致

        layer.strokeColor   = [UIColor greenColor].CGColor;   // 边缘线的颜色

        layer.fillColor     = [UIColor greenColor].CGColor;   // 闭环填充的颜色

        layer.lineCap       = kCALineCapRound;               // 边缘线的类型

        layer.path          = path.CGPath;                    // 从贝塞尔曲线获取到形状

        layer.lineWidth     = 9.0f;                           // 线条宽度

        layer.strokeStart   = 0.0f;

        layer.strokeEnd     = 0.0f;

        

        [showView.layer addSublayer:layer];

        CABasicAnimation *pathAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];

        pathAnimation.duration = 5.0;

        pathAnimation.fromValue = [NSNumber numberWithFloat:0.0f];

        pathAnimation.toValue = [NSNumber numberWithFloat:1.0f];

        [layer addAnimation:pathAnimation forKey:nil];

  • 相关阅读:
    李永乐,皇帝的新衣背后,共有知识和公共知识
    汇率原理
    mybatis pageHelper 分页插件使用
    oracle中的exists 和not exists 用法详解
    Webservice入门简单实例
    java-可逆加密算法
    idea 卡顿问题
    idea svn操作
    HttpServletrequest 与HttpServletResponse总结
    Spring boot中应用jpa jpa用法
  • 原文地址:https://www.cnblogs.com/feng9exe/p/6731304.html
Copyright © 2011-2022 走看看