DownloadButton动画

作者: JoyceZhao | 来源:发表于2016-08-25 17:30 被阅读135次
    • 涉及到的技术点
      • cornerRadius
        • 用来绘制矩形的圆角
          • 正方形变圆形:cornerRadius值为边长的1/2
          • 矩形两头变圆角:cornerRadius值为矩形高的1/2
        • 设置了cornerRadius之后记得把圆角之外的部分切除self.clipsToBounds = YES; 或者 self.layer.masksToBounds = YES;
      • bounds
        • bounds动画
      • strokedEnd
        • 进度条动画用到的属性
        • 不是CALayer的属性,是其子类CAShapeLayer的一个特有的属性
        • 使用时必须创建一个CAShapeLayer,还要为参数path赋值
    • DownloadButton动画的界面布局
    界面布局图6.png
    • DownloadButton动画的运行结果
    运行结果图6.gif

    相关文章

      网友评论

        本文标题:DownloadButton动画

        本文链接:https://www.haomeiwen.com/subject/dlsasttx.html