您好,欢迎来到二三娱乐。
搜索
您的当前位置:首页旋转小图动画

旋转小图动画

来源:二三娱乐

<pre><code>///点击一个 调用3次的 颜色 下拉动画 旋转小图图标

#pragma mark - animation

- (void)animateIndicator:(CAShapeLayer *)indicator Forward:(BOOL)forward complete:(void(^)())complete

{

[CATransaction begin];

[CATransaction setAnimationDuration:0.25];

[CATransaction setAnimationTimingFunction:[CAMediaTimingFunction functionWithControlPoints:0.4 :0.0 :0.2 :1.0]];

CAKeyframeAnimation *anim = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation"];

anim.values = forward ? @[ @0, @(M_PI) ] : @[ @(M_PI), @0 ];

if (!anim.removedOnCompletion) {

[indicator addAnimation:anim forKey:anim.keyPath];

} else {

[indicator addAnimation:anim andValue:anim.values.lastObject forKeyPath:anim.keyPath];

}

[CATransaction commit];

indicator.fillColor = forward ? _tableView.tintColor.CGColor : _menuColor.CGColor;

complete();

}</code></pre>

Copyright © 2019- yule263.com 版权所有 湘ICP备2023023988号-1

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务