完全自定义动画

- (void)createArcAnimationForKey:(NSString *)key fromValue:(NSNumber *)from toValue:(NSNumber *)to Delegate:(id)delegate

{

    CABasicAnimation *arcAnimation = [CABasicAnimation animationWithKeyPath:key];

    NSNumber *currentAngle = [[self presentationLayer] valueForKey:key];

    if(!currentAngle) currentAngle = from;

    [arcAnimation setFromValue:currentAngle];

    [arcAnimation setToValue:to];         

    [arcAnimation setDelegate:delegate];

    [arcAnimation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]];

    [self addAnimation:arcAnimation forKey:key];

    [self setValue:to forKey:key];

}

 

- (void)updateTimerFired:(NSTimer *)timer;

{   

    CALayer *parentLayer = [_pieView layer];

    NSArray *pieLayers = [parentLayer sublayers];

 

    [pieLayers enumerateObjectsUsingBlock:^(CAShapeLayer * obj, NSUInteger idx, BOOL *stop) {

        

        NSNumber *presentationLayerStartAngle = [[obj presentationLayer] valueForKey:@"startAngle"];

        CGFloat interpolatedStartAngle = [presentationLayerStartAngle doubleValue];

        

        NSNumber *presentationLayerEndAngle = [[obj presentationLayer] valueForKey:@"endAngle"];

        CGFloat interpolatedEndAngle = [presentationLayerEndAngle doubleValue];

 

        CGPathRef path = CGPathCreateArc(_pieCenter, _pieRadius, interpolatedStartAngle, interpolatedEndAngle);

        [obj setPath:path];

        CFRelease(path);

        

        {

            CALayer *labelLayer = [[obj sublayers] objectAtIndex:0];

            CGFloat interpolatedMidAngle = (interpolatedEndAngle + interpolatedStartAngle) / 2;        

            [CATransaction setDisableActions:YES];

            [labelLayer setPosition:CGPointMake(_pieCenter.x + (_labelRadius * cos(interpolatedMidAngle)), _pieCenter.y + (_labelRadius * sin(interpolatedMidAngle)))];

            [CATransaction setDisableActions:NO];

        }

    }];

}

 

- (void)animationDidStart:(CAAnimation *)anim

{

    if (_animationTimer == nil) {

        static float timeInterval = 1.0/60.0;

        // Run the animation timer on the main thread.

        // We want to allow the user to interact with the UI while this timer is running.

        // If we run it on this thread, the timer will be halted while the user is touching the screen (that's why the chart was disappearing in our collection view).

        _animationTimer= [NSTimer timerWithTimeInterval:timeInterval target:self selector:@selector(updateTimerFired:) userInfo:nil repeats:YES];

        [[NSRunLoop mainRunLoop] addTimer:_animationTimer forMode:NSRunLoopCommonModes];

    }

    

    [_animations addObject:anim];

}

转载于:https://www.cnblogs.com/feng9exe/p/6737913.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值