ios开发——实用技术篇&三维旋转动画

Posted 余磊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发——实用技术篇&三维旋转动画相关的知识,希望对你有一定的参考价值。

实现三位旋转动画的方法有很多种,这里介绍三种

一:UIView

技术分享
1     [UIView animateWithDuration:1.0 animations:^{
2         self.iconView.layer.transform = CATransform3DMakeRotation(M_PI_2, 0, 1, 0);
3     } completion:^(BOOL finished) {
4         self.iconView.image = [UIImage imageNamed:@"user_defaultgift"];
5        
6         [UIView animateWithDuration:1.0 animations:^{
7             self.iconView.layer.transform = CATransform3DMakeRotation(M_PI, 0, 1, 0);
8         }];
9     }];
技术分享

二:CATransition自定义

1     CATransition
2     CATransition *anim = [CATransition animation];
3     anim.duration = 1.0;
4     anim.type = @"rippleEffect";
5     [self.iconView.layer addAnimation:anim forKey:nil];

三:CATransition

技术分享
 1     
 2     [UIView transitionWithView:self.iconView duration:1.0 options:UIViewAnimationOptionTransitionFlipFromLeft animations:^{
 3         self.iconView.image = [UIImage imageNamed:@"user_defaultgift"];
 4     } completion:^(BOOL finished) {
 5         dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
 6             [UIView transitionWithView:self.iconView duration:1.0 options:UIViewAnimationOptionTransitionFlipFromRight animations:^{
 7                 self.iconView.image = [UIImage imageNamed:@"default_avatar"];
 8             } completion:nil];
 9         });
10     }];
11 }
技术分享

以上是关于ios开发——实用技术篇&三维旋转动画的主要内容,如果未能解决你的问题,请参考以下文章

iOS动画(三):核心动画中缩放和旋转(Swift)

学三维动画要用数位板吗?

Unity 3D 物体旋转放大。

开发技术集合(包含Qt实用技术树莓派三维OpenCVOpenGLffmpegOSG单片机软硬结合等等)持续更新中...

iOS核心动画之图片旋转、脉冲动画、水波纹动画

iOS开发-核心动画随笔