zoukankan      html  css  js  c++  java
  • 完全自定义动画

    - (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];

    }

  • 相关阅读:
    drf 之 JWT认证 什么是集群以及分布式 什么是正向代理,什么是反向代理
    drf 之自定制过滤器 分页器(三种)如何使用(重点) 全局异常 封装Response对象 自动生成接口文档
    课堂练习之“寻找最长单词链”
    《人月神话》读书笔记(三)
    用户体验
    第十四周进度报告
    课堂练习之“寻找水王”
    《人月神话》读书笔记(二)
    第二阶段冲刺(十)
    第二阶段冲刺(九)
  • 原文地址:https://www.cnblogs.com/feng9exe/p/6737913.html
Copyright © 2011-2022 走看看