博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CGPathAddArc
阅读量:6230 次
发布时间:2019-06-21

本文共 1400 字,大约阅读时间需要 4 分钟。

 

 
775人阅读 
(0) 
 
[plain] 
  1. float angle = 360 / 6;  
  2. for (int i = 0; i < 6; i++) {  
  3.     UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];  
  4.     float offsetAngle = angle * i;  
  5.     button.bounds = CGRectMake(0, 0, 32, 32);  
  6.     button.center = CGPointMake(cos(offsetAngle * RADIANS) * 160, sin(offsetAngle * RADIANS) * 160);  
  7.     button.tag = i;  
  8.     CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];  
  9.     CGMutablePathRef path = CGPathCreateMutable();  
  10.     pathAnimation.calculationMode = kCAAnimationPaced;  
  11.     pathAnimation.fillMode = kCAFillModeForwards;  
  12.     pathAnimation.removedOnCompletion = NO;  
  13.     pathAnimation.duration = 2;  
  14.     CGPathMoveToPoint(path, NULL, button.center.x, button.center.y);  
  15.     CGPathAddArc(path, NULL, 0, 0, 160, offsetAngle * M_PI/180, offsetAngle * M_PI/180 + M_PI, YES);  
  16.     pathAnimation.path = path;  
  17.     CGPathRelease(path);  
  18.     [button.layer addAnimation:pathAnimation forKey:@"curve"];  
  19.     [tabBarView addSubview:button];  
  20. }  

因为只是Layer的内容发生的位置变化,其实UIView还是在原来的位置上,如果需要使用应该在Animation结束后重新设定UIView的位置.

 

顺便翻译一下原文:

 

 

CGPathAddArc (

   CGMutablePathRef path,

   const CGAffineTransform *m,

   CGFloat x,

   CGFloat y,

   CGFloat radius,

   CGFloat startAngle,

   CGFloat endAngle,

   bool clockwise

);

path:动画的路径;

m:layer的transform;

x:其实x和y是什么我还没弄明白,根据原文应该是弧的圆心点,但我设置过,这更像是偏移量;

y:同上;

startAngle:起始的角度点,零度是与x轴相交点,度数为顺时针;

endAngle:结束的角度点;

clockwis:是否顺时针.

转载于:https://www.cnblogs.com/yulang314/p/3720628.html

你可能感兴趣的文章
Python3.4 12306 2015年3月验证码识别
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
Io流的概述
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>
开源SIP服务器加密软件NethidPro升级
查看>>
《别做正常的傻瓜》的一些读书心得
查看>>
作业:实现简单的shell sed替换功能和修改haproxy配置文件
查看>>
Altium 拼板方法以及 注意的 地方
查看>>
PMP考试的过与只是
查看>>
Apache Pulsar中的地域复制,第1篇:概念和功能
查看>>
python pip install 出现 OSError: [Errno 1] Operation not permitted
查看>>
oracle12C 重做日志
查看>>
zookeeper与kafka安装部署及java环境搭建(发布订阅模式)
查看>>
从源码分析scrollTo、scrollBy、Scroller方法的区别和作用
查看>>
聊聊单元測试(一)——EasyMock
查看>>
使用 Chrome 来调试你的 Android App
查看>>