zoukankan      html  css  js  c++  java
  • [转载]CABasicAnimation animationWithKeyPath 一些规定的值

    CABasicAnimation animationWithKeyPath Types

    When using the ‘CABasicAnimation’ from the QuartzCore Framework in Objective-C, you have to specify an animationWithKeyPath.  This is a long string and is not easily listed in the CABasicAnimation, CAPropertyAnimation, or the CAAnimation class.  I ended up finding a handy chart within the Core Animation Programming guide in Apple’s iPhone OS Reference Library.  Hope this helps save someone time, at least it will for me.

    animationWithKeyPath types


    01.//The following code moves a view up 60 pixels and stops.
    02. 
    03.CABasicAnimation *theAnimation;
    04.theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.translation.y"];
    05.theAnimation.delegate = self;
    06.theAnimation.duration = 1;
    07.theAnimation.repeatCount = 0;
    08.theAnimation.removedOnCompletion = FALSE;
    09.theAnimation.fillMode = kCAFillModeForwards;
    10.theAnimation.autoreverses = NO;
    11.theAnimation.fromValue = [NSNumber numberWithFloat:0];
    12.theAnimation.toValue = [NSNumber numberWithFloat:-60];
    13. 
    14.[self.view.layer addAnimation:theAnimation forKey:@"animateLayer"];

  • 相关阅读:
    hdu2089 不要62
    hdu4734 F(x)
    hdu3555 Bomb
    hdu3652 B-number
    hdu4352 XHXJ's LIS
    CodeForces 55D Beautiful numbers
    数位dp模板
    欧拉函数模板
    UVALive
    常用正则表达 (转)
  • 原文地址:https://www.cnblogs.com/cnsec/p/11515889.html
Copyright © 2011-2022 走看看