博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIView 进行各种动画展示及其用法解释
阅读量:6832 次
发布时间:2019-06-26

本文共 2778 字,大约阅读时间需要 9 分钟。

//第一种动画方式

- (void) first_animations

{

    [UIView beginAnimations:nil context:nil];  //启动动画动作
    [UIView setAnimationRepeatCount:1];//设置是否重复播放
    [UIView setAnimationDuration:1];//设置动画持续时间
    [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; //动画曲线,具体的应用 ,可以经过实验检测
    [UIView setAnimationDelegate:self];//动画块的某个方法(最下方),委托到本类的实例
    [UIView setAnimationDidStopSelector:@selector(resetView)];//动画结束后去执行的方法
    
    CGAffineTransform oneTransform = CGAffineTransformRotate(self.animatView.transform, degreesToRadian(180));//进行  CGAffineTransform 方式的动作(旋转拉伸等等)===>(对于CGAffineTransform  可以另外开辟一个关于CGAffineTransform使用详情的文章进行专门介绍 )

 

    CGAffineTransform twoTransform = CGAffineTransformTranslate(self.animatView.transform,0,-100);

    CGAffineTransform newTransform = CGAffineTransformConcat(oneTransform, twoTransform);
    [self.animatView setTransform:newTransform];
    [UIView commitAnimations];//有些网友说,这是动画结束.起始经过本人尝试试验.其实应该是,执行上方定义的动画块内容.
}

//第二中动画定义方式

- (void) second_animations
{
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"opacity"];
    [animation setDuration:1];
    [animation setRepeatCount:0];
    [animation setAutoreverses:YES];//自动反向动画
    [animation setFromValue:[NSNumber numberWithFloat:1.0]];
    [animation setToValue:[NSNumber numberWithFloat:0]];
    [animation setDelegate:self];
    [self.animatView.layer addAnimation:animation forKey:@"firstView-Opacity"];
}
- (void) third_animations
{
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationRepeatCount:1];
    [UIView setAnimationDuration:1];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; 
    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.containView cache:YES];
    [UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:)];
    [UIView commitAnimations];
}
- (void) fourth_animations
{
    CATransition *transition = [CATransition animation];
    transition.duration = 1.0f;          /*  间隔时间*/
    transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];  /* 动画的开始与结束的快慢*/
    transition.type = @"pageCurl";  //@"cube" @"moveIn" @"reveal" @"fade"(default) @"pageCurl" @"pageUnCurl" @"suckEffect" @"rippleEffect" @"oglFlip"
    transition.subtype = kCATransitionFromRight;
    transition.removedOnCompletion = YES;
    transition.fillMode = kCAFillModeBackwards;
    transition.delegate = self;
    [self.animatView.layer addAnimation:transition forKey:nil];  
}
-(void) resetView
{
    [self.animatView setTransform:CGAffineTransformRotate(self.animatView.transform, degreesToRadian(180))];
    self.animatView.frame = CGRectMake(0, 0, 280, 200);
}
#pragma mark Delegate Methods
- (void)animationDidStop:(CAAnimation *) theAnimation finished:(BOOL) flag {
    self.animatView.frame = CGRectMake(0, 0, 280, 200);
}

#define degreesToRadian(x) (M_PI * (x) / 180.0)

 ================再次挖井的分割线07.11=============

 

转载地址:http://vrjkl.baihongyu.com/

你可能感兴趣的文章
SHIFT后门拿服务器之方法总结
查看>>
【问题&解决】手机网页Html代码实现(解决显示页面很小的问题)
查看>>
微信利用PHP创建自定义菜单的方法
查看>>
计算机是如何启动的?
查看>>
Origami
查看>>
初试ASP.NET Web API/MVC API(附Demo)
查看>>
java开发_模仿百度文库_OpenOffice2PDF_注意事项
查看>>
jQuery 效果 - animate() 方法
查看>>
【记录】恢复win7与ARM开发板TQ2440的串口连接
查看>>
HTTP协议详解(转)
查看>>
Java关键字final、static使用总结
查看>>
JavaScript学习总结(十四)——JavaScript编写类的扩展方法
查看>>
Android数据存储
查看>>
JavaScript网站设计实践(五)编写photos.html页面,实现点击缩略图显示大图的效果...
查看>>
[再寄小读者之数学篇](2014-05-20 一个分部积分)
查看>>
Java httpclient请求,解决乱码问题
查看>>
IE10、IE11 无法写入Cookie
查看>>
汉化Eclipse+配色方法(官方语言包)
查看>>
Ansi,UTF8,Unicode,ASCII编码的差别
查看>>
【delphi】Delphi过程、函数传递参数的八种方式
查看>>