关于系统API

以下API效果可以安全使用

cube方块

suckEffect三角

rippleEffect水波抖动

pageCurl上翻页

pageUnCurl下翻页

oglFlip上下翻转

cameraIrisHollowOpen镜头快门开

cameraIrisHollowClose镜头快门开

以下API效果请慎用

spewEffect新版面在屏幕下方中间位置被释放出来覆盖旧版面.

genieEffect旧版面在屏幕左下方或右下方被吸走,显示出下面的新版面

unGenieEffect新版面在屏幕左下方或右下方被释放出来覆盖旧版面.

twist版面以水平方向像龙卷风式转出来.

tubey版面垂直附有弹性的转出来.

swirl旧版面360度旋转并淡出,显示出新版面.

charminUltra旧版面淡出并显示新版面.

zoomyIn新版面由小放大走到前面,旧版面放大由前面消失.

zoomyOut新版面屏幕外面缩放出现,旧版面缩小消失.

oglApplicationSuspend像按”home”按钮的效果.

切换图片动画

-(IBAction)buttonClick:(UIButton*)button

{

    button.tag++;

   if(button.tag==3)

    {

        button.tag=0;

    }

   _imageView.image= [UIImageimageNamed:[NSStringstringWithFormat:@"%d",button.tag]];


   //私有api里的动画效果 (使用了不能上线)

//    cube方块

//    suckEffect三角

//    rippleEffect水波抖动

//    pageCurl上翻页

//    pageUnCurl下翻页

//    oglFlip上下翻转

//    cameraIrisHollowOpen镜头快门开

//    cameraIrisHollowClose镜头快门开


   //转场动画

//    CATransaction

   CATransition  *transition = [CATransitionanimation];

   //设置动画效果

    transition.type=@"cameraIrisHollowOpen";

   //动画方向

    transition.subtype=kCATransitionFromRight;


    transition.duration=2;

   //添加动画

    [_imageView.layeraddAnimation:transitionforKey:nil];

}

核心动画

   //UIView动画是基于CALayer动画的封装

   //CALayer动画封装在QuartzCore框架中

   //CAAnimation动画的抽象类 一般使用子类

//    CABasicAnimation 基础动画

//    CAKeyframeAnimation关键帧动画

//    CAAnimationGroup 动画组

//    CATransition 转场动画(过渡动画)


#import"ViewController.h"

@interfaceViewController()

{

   UIButton*_button;

}

@end

@implementationViewController

- (void)viewDidLoad {

    [superviewDidLoad];


   /*

    [UIView animateWithDuration:<#(NSTimeInterval)#> animations:<#^(void)animations#> completion:<#^(BOOL finished)completion#>]

    */


   //UIView动画是基于CALayer动画的封装

   //CALayer动画封装在QuartzCore框架中

   //CAAnimation动画的抽象类 一般使用子类

//    CABasicAnimation 基础动画

//    CAKeyframeAnimation关键帧动画

//    CAAnimationGroup 动画组

//    CATransition 转场动画(过渡动画)


   _button= [UIButtonbuttonWithType:UIButtonTypeCustom];

   _button.bounds=CGRectMake(0,0,100,100);

   //锚点

   _button.layer.anchorPoint=CGPointMake(0,0);

   _button.layer.position=CGPointMake(100,100);

   _button.backgroundColor= [UIColorredColor];

    [_buttonsetTitle:@"按钮"forState:UIControlStateNormal];

    [_buttonaddTarget:selfaction:@selector(buttonClick:)forControlEvents:UIControlEventTouchUpInside];

    [self.viewaddSubview:_button];


}

//

-(void)touchesBegan:(NSSet<UITouch*> *)touches withEvent:(UIEvent*)event

{

   NSLog(@"touch---------");

   //动画

//    [self baseAnimation];

//    [self keyFrameAnimation];

    [selfanimationGroup];

}

//动画组

-(void)animationGroup

{

   //有一组基础动画组成

   CABasicAnimation*a1 = [CABasicAnimationanimationWithKeyPath:@"backgroundColor"];

    a1.fromValue= (id)[[UIColorredColor]CGColor];

    a1.toValue= (id)[[UIColorblueColor]CGColor];


   CABasicAnimation*a2 = [CABasicAnimationanimationWithKeyPath:@"transform.translation.x"];

    a2.fromValue= @-50;

    a2.toValue=@150;



   CABasicAnimation*a3 = [CABasicAnimationanimationWithKeyPath:@"transform.scale.y"];

    a3.fromValue=@1;

    a3.toValue=@1.5;


   CAAnimationGroup*group = [CAAnimationGroupanimation];

    group.animations=@[a1,a2,a3];


    group.duration=3;


    [_button.layeraddAnimation:groupforKey:nil];


}

//关键帧动画

-(void)keyFrameAnimation

{

   CAKeyframeAnimation*animation = [CAKeyframeAnimationanimation];

    animation.keyPath=@"transform.translation.y";

   //运动的过程,可以有多个值

    animation.values=@[@200,@(-100),@100,@(-50)];

   //设置运动每一帧所在的时间点

   //数组必须从0开始,到1结束

    animation.keyTimes=@[@0,@0.2,@0.8,@1];


   //持续时间

    animation.duration=3;


    [_button.layeraddAnimation:animationforKey:nil];

}

//基础动画

-(void)baseAnimation

{

   //基础动画一次只能改变一个属性的值

   //获取动画对象

   CABasicAnimation*animation = [CABasicAnimationanimation];

   //keyPath:控件属性名称 属性名称一定是layer的属性名称,因为动画是基于CALayer的动画

//    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];


   /* 位置

    animation.keyPath = @"position";


    //基本类型需要转换成NSNumber类型

    //结构体需要转换成NSValue类型

    //从fromValue变到toValue  50,50  --> 200,400

    animation.fromValue = [NSValue valueWithCGPoint:CGPointMake(50, 50)];

    animation.toValue = [NSValue valueWithCGPoint:CGPointMake(200, 400)];

    */


   /*

    //大小  (50,50)-->(300,300)

    animation.keyPath = @"bounds";

    animation.fromValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 50, 50)];

//    animation.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 300, 300)];

    //大小  (50,50)-->(350,350)

    animation.byValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 300, 300)];

    */


   //基础动画一次只能改变一个属性的值,要么位置,要么大小

   /*  frame改变不了

    animation.keyPath = @"frame";

    animation.fromValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 50, 50)];

    animation.toValue = [NSValue valueWithCGRect:CGRectMake(200, 400, 100, 100)];

    */


   //平移 缩放 旋转

//    animation.keyPath = @"transform";


   //平移

   //tx ty  tz :x,y,z三个轴上移动距离

//    animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(0, 0, 0)];

//    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeTranslation(-100, 300, 100)];


   //缩放

   //sx,sy,sz:x,y,z三轴上缩放比例

//    animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(1, 1, 1)];

//    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(-1, -0.5, -1)];


   //angle 旋转角度

   //弧度角= angle * M_PI / 180

   //x,y,z轴方向旋转的比率。0不旋转

//    animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(0, 0, 0, 0)];

//    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, .3, 0.8, 0)];



   //指定某一个轴上的缩放

    animation.keyPath=@"transform.scale.x";


    animation.fromValue=@1;

    animation.toValue=@2;





  // CAMediaTiming 封装了动画的属性

   //动画持续时间

    animation.duration=2;

   //动画重复次数

//    animation.repeatCount = 1;

   //在此时间内一直动画,直到时间耗尽

//    animation.repeatDuration = 3;


   //设置动画延时

   //CACurrentMediaTime()当前时间

//    animation.beginTime = CACurrentMediaTime() + 2;


   //代理

    animation.delegate=self;


   //让控件保留动画结束时候的位置

    animation.removedOnCompletion=NO;

  // kCAFillModeForwards动画结束时保留结束时候的状态

  // kCAFillModeBackwards动画开始时保留开始时候的状态

  // kCAFillModeBoth以上两种状态结合

    animation.fillMode=kCAFillModeBoth;




   //添加动画  key:动画的标示符

    [_button.layeraddAnimation:animationforKey:@"basicAnimation"];


   //CAAnimation动画过程中,控件本身其实没有动(控件的属性没有被修改)。 运动时,系统复制了一个和控件一样的layer,让这个layer运动。


   //需要自己写代码实现控件属性的改变

//    _button.layer.position = CGPointMake(200, 400);


   //POP第三方动画Facebook

   //动画过程,控件的属性是被修改了的

}

- (void)animationDidStart:(CAAnimation*)anim

{

   NSLog(@"开始动画。。。");

}

-(void)animationDidStop:(CAAnimation*)anim finished:(BOOL)flag

{

   if(flag)

    {

       NSLog(@"动画结束");

    }

   else

    {

       NSLog(@"动画中断");

    }

}

-(void)buttonClick:(UIButton*)sender

{

   NSLog(@"buttonClick++++++++++");

}

- (void)didReceiveMemoryWarning {

    [superdidReceiveMemoryWarning];

   // Dispose of any resources that can be recreated.

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352

推荐阅读更多精彩内容