iOS实现转场动画的3种方法示例

所属分类: 软件编程 / IOS 阅读数: 741
收藏 0 赞 0 分享

什么是转场动画

在 NavigationController 里 push 或 pop 一个 View Controller,在 TabBarController 中切换到其他 View Controller,以 Modal 方式显示另外一个 View Controller,这些都是 View Controller Transition。在 storyboard 里,每个 View Controller 是一个 Scene,View Controller Transition 便是从一个 Scene 转换到另外一个 Scene, 中文称呼其为「转场」。 顾名思义,转场动画便是 View Controller Transition 过程中的动画效果。

在 iOS 7 之前,我们只能使用系统提供的转场效果,大部分时候够用,但仅仅是够用而已,总归会有各种不如意的小地方,但我们却无力改变;iOS 7 开放了相关 API 允许我们对转场效果进行全面定制,这太棒了,自定义转场动画以及对交互手段的支持带来了无限可能。

本文主要给大家介绍了关于iOS实现转场动画的3种方法,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧

1.CATransition

CATransition是CAAnimation的子类,用于过渡动画或转场动画。为视图层移入移除屏幕提供转场动画。首先来看一下简单的Demo:

 CATransition *animation = [CATransition animation];
 animation.type = kCATransitionFade;
 animation.subtype = kCATransitionFromRight;
 animation.duration = 1.0;
 // 在window上执行CATransition, 即可在ViewController转场时执行动画
 [self.view.window.layer addAnimation:animation forKey:@"kTransitionAnimation"];
 
 AViewController *vc = [[AViewController alloc] init];
 [self presentViewController:vc animated:NO completion:nil];

将该动画添加到window.layer上,则会present或push时使用指定的转场动画。

其中最主要的两个属性就是type和subtype。

  • type:转场动画的类型。

官方SDK只提供了四种转场动画的类型,即:

CA_EXTERN NSString * const kCATransitionFade;
CA_EXTERN NSString * const kCATransitionMoveIn;
CA_EXTERN NSString * const kCATransitionPush;
CA_EXTERN NSString * const kCATransitionReveal;

私有的type:

NSString *const kCATransitionCube = @"cube"; 
NSString *const kCATransitionSuckEffect = @"suckEffect"; 
NSString *const kCATransitionOglFlip = @"oglFlip"; 
NSString *const kCATransitionRippleEffect = @"rippleEffect"; 
NSString *const kCATransitionPageCurl = @"pageCurl"; 
NSString *const kCATransitionPageUnCurl = @"pageUnCurl"; 
NSString *const kCATransitionCameraIrisHollowOpen = @"cameraIrisHollowOpen";
NSString *const kCATransitionCameraIrisHollowClose = @"cameraIrisHollowClose";
  • subtype:动画类型的方向
CA_EXTERN NSString * const kCATransitionFromRight;
CA_EXTERN NSString * const kCATransitionFromLeft;
CA_EXTERN NSString * const kCATransitionFromTop;
CA_EXTERN NSString * const kCATransitionFromBottom;

上面讲的是给window.layer添加transition,这样使得在present或push时使用指定的转场动画。

既然讲到这里了,就看一下把transition加在layer上。

看一下示例代码:

- (void)viewDidLoad {
 [super viewDidLoad];
 
 UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(100, 100, 100, 50)];
 
 [button setTitle:@"进入" forState:UIControlStateNormal];
 
 button.backgroundColor = [UIColor redColor];
 
 [button addTarget:self action:@selector(buttonClicked) forControlEvents:UIControlEventTouchUpInside];
 
 [self.view addSubview:button];
 
 _imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 300, 150, 150)];
 [self.view addSubview:_imageView];
 _imageView.backgroundColor = [UIColor redColor];
 _imageArray = @[[UIImage imageNamed:@"成果秀1"],[UIImage imageNamed:@"点赞他人1"],[UIImage imageNamed:@"偷师学艺1"],[UIImage imageNamed:@"学会欣赏3"]];
 
 _imageView.image = [UIImage imageNamed:@"成果秀1"];
}


- (void)buttonClicked{
 
 CATransition *animation = [CATransition animation];
 animation.type = @"cube";
 animation.subtype = kCATransitionFromRight;
 animation.duration = 1.0;
 //换图片的时候使用转场动画
 [self.imageView.layer addAnimation:animation forKey:nil];
 //cycle to next image
 UIImage *currentImage = self.imageView.image;
 NSUInteger index = [self.imageArray indexOfObject:currentImage];
 index = (index + 1) % [self.imageArray count];
 self.imageView.image = self.imageArray[index];
 
}

2.transitionFromViewController

UIViewController自带的方法:
transitionFromViewController:toViewController:duration:options:animations:completion:这个转场动画是用在当一个父视图控制器中有几个childViewController,当要在这几个子视图控制器之间切换时就可以用这个方法。

AViewController *a = self.childViewControllers[0];
BViewController *b = self.childViewControllers[1];
CViewController *c = self.childViewControllers[2];

// Curl 翻页效果
// UIViewAnimationOptionTransitionCurlUp, UIViewAnimationOptionTransitionCurlDown
// Flip 翻转效果
// UIViewAnimationOptionTransitionFlipFromLeft, UIViewAnimationOptionTransitionFlipFromRight
// UIViewAnimationOptionTransitionFlipFromTop, UIViewAnimationOptionTransitionFlipFromDown

[self transitionFromViewController:_currentViewController
   toViewController:b
    duration:0.5
    options:UIViewAnimationOptionTransitionFlipFromRight
   animations:^{

} completion:^(BOOL finished) {

}];

3.Transition Animation

1 UINavigationControllerDelegate + UIViewControllerAnimatedTransitioning

在UINavigationController的转场动画中,要指定UINavigationControllerDelegate对象:

self.navigationController.delegate = self;
[self.navigationController pushViewController:itemVC animated:YES];

UINavigationControllerDelegate主要有以下两个协议方法:

//pop
- (nullable id <UIViewControllerInteractiveTransitioning>)navigationController:(UINavigationController *)navigationController
       interactionControllerForAnimationController:(id <UIViewControllerAnimatedTransitioning>) animationController NS_AVAILABLE_IOS(7_0);
//push
- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
         animationControllerForOperation:(UINavigationControllerOperation)operation
            fromViewController:(UIViewController *)fromVC
             toViewController:(UIViewController *)toVC NS_AVAILABLE_IOS(7_0);

首先创建一个基类PDAnimatorBaseTransition实现UIViewControllerAnimatedTransitioning协议的方法。

UIViewControllerAnimatedTransitioning协议的方法有:

//动画持续时间
- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext;
//转场动画实现细节
- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext;
动画结束时调用
- (void)animationEnded:(BOOL) transitionCompleted;

PDAnimatorBaseTransition.h

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

typedef NS_ENUM(NSInteger, PDAnimationType){
 
 animationTypePresent = 0,
 animationTypeDismiss ,
 animationTypePush ,
 animationTypePop,
};

@interface PDAnimatorBaseTransition : NSObject <UIViewControllerAnimatedTransitioning>

@property (nonatomic, assign)PDAnimationType animationType;

@property (nonatomic, strong)UIView *containerView;

@property (nonatomic, strong)UIViewController *from;

@property (nonatomic, strong)UIViewController *to;

@property (nonatomic, strong)UIView *fromView;

@property (nonatomic, strong)UIView *toView;

@property (nonatomic, weak)id <UIViewControllerContextTransitioning> transitionContext;


@end

PDAnimatorBaseTransition.m

#import "PDAnimatorBaseTransition.h"
@interface PDAnimatorBaseTransition() 
@end
@implementation PDAnimatorBaseTransition

#pragma mark -required
- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext{
 
 return 1.f;
}

- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext{
 
 _transitionContext = transitionContext;
 
 _containerView = [transitionContext containerView];
 
 _from = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
 
 _to = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
 
 if([transitionContext respondsToSelector:@selector(viewForKey:)]){
  
  _fromView = [transitionContext viewForKey:UITransitionContextFromViewKey];
  _toView = [transitionContext viewForKey:UITransitionContextToViewKey];
 }else{
  
  _fromView = _from.view;
  _toView = _to.view;
 }
 
 if(self.animationType == animationTypePresent){
  
  [self animationPresent];
 }else if (self.animationType == animationTypeDismiss){
  
  [self animationDismiss];
 }else if (self.animationType == animationTypePop){
  
  [self animationPop];
 }else{
  
  [self animationPush];
 }
 
}
#pragma mark -optional

//动画结束时回调
- (void)animationEnded:(BOOL) transitionCompleted{ 
}
- (void)animationPresent{ 
}
- (void)animationDismiss{
}
- (void)animationPop{ 
}
- (void)animationPush{
 
}

然后创建子类PDAnimatorPUshPopTransition继承自PDAnimatorBaseTransition,实现- (void)animationPush,- (void)animationPop方法。

PDAnimatorPUshPopTransition.h

#import "PDAnimatorBaseTransition.h"
#import <UIKit/UIKit.h>

@interface PDAnimatorPUshPopTransition : PDAnimatorBaseTransition
@property (nonatomic, assign)CGPoint itemCenter;

@property (nonatomic, assign)CGSize itemSize;

@property (nonatomic, strong)NSString *imageName;

@end

PDAnimatorPUshPopTransition.m

#import "PDAnimatorPUshPopTransition.h"

@implementation PDAnimatorPUshPopTransition

- (instancetype)init{
 
 self = [super init];
 if(self){
  
  
 }
 
 return self;
}

- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext{
 
 return 5.f;
}

- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext{
 
 [super animateTransition:transitionContext];
}

- (void)animationPush{
 
 NSTimeInterval duration = [self transitionDuration:self.transitionContext];
 __weak typeof(self) weakSelf = self;
 
 self.containerView.backgroundColor = [UIColor lightGrayColor];
 
 UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 160)];
 imageView.image = [UIImage imageNamed:self.imageName];
 imageView.center = _itemCenter;
 
 CGFloat initialScale = _itemSize.width / CGRectGetWidth(imageView.frame);
 
 CGAffineTransform transform = CGAffineTransformIdentity;
 
 transform = CGAffineTransformScale(transform, initialScale, initialScale);
 transform = CGAffineTransformRotate(transform, M_PI);
 
 imageView.layer.affineTransform = transform;
 
 // imageView.transform = CGAffineTransformMakeScale(initialScale, initialScale);
 
 [self.containerView addSubview:imageView];
 
 
 self.toView.frame = [self.transitionContext finalFrameForViewController:self.to];
 CGPoint finalCenter = self.toView.center;
 self.toView.center = finalCenter;
 self.toView.alpha = 0.0;
 //这一句一定要
 [self.containerView addSubview:self.toView];
 
 [UIView animateWithDuration:duration delay:0 usingSpringWithDamping:0.5 initialSpringVelocity:0 options:UIViewAnimationOptionCurveLinear animations:^{
  

  imageView.layer.affineTransform = CGAffineTransformIdentity;
  
  imageView.center = finalCenter;
  
  self.fromView.alpha = 0.0;
  self.containerView.backgroundColor = [UIColor redColor];
 } completion:^(BOOL finished){
  
  [imageView removeFromSuperview];
  
  weakSelf.toView.alpha = 1.0f;
  weakSelf.fromView.alpha = 1.0f;
  
  [weakSelf.transitionContext completeTransition:![weakSelf.transitionContext transitionWasCancelled]];
 }];
 
}

- (void)animationPop{
 
 NSTimeInterval duration = [self transitionDuration:self.transitionContext];
 __weak typeof(self) weakSelf = self;
 
 self.toView.frame = [self.transitionContext finalFrameForViewController:self.to];
 
 [self.containerView insertSubview:self.toView belowSubview:self.fromView];
 
 self.fromView.alpha = 0.0;
 
 self.fromView.backgroundColor = [UIColor clearColor];
 
 [UIView animateWithDuration:duration delay:0 usingSpringWithDamping:0.5 initialSpringVelocity:0 options:UIViewAnimationOptionCurveLinear animations:^{
  
  CGFloat initialScale = _itemSize.width / 200;
  weakSelf.fromView.transform = CGAffineTransformMakeScale(initialScale, initialScale);
  weakSelf.fromView.center = weakSelf.itemCenter;
  
  weakSelf.toView.alpha = 1.0f;
 } completion:^(BOOL finished){
  
  weakSelf.fromView.alpha = 0.0f;
  
  [weakSelf.transitionContext completeTransition:![weakSelf.transitionContext transitionWasCancelled]];
 }];
}


@end

然后我们在需要push的地方实现UINavigationControllerDelegate的协议方法:

- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
           animationControllerForOperation:(UINavigationControllerOperation)operation
               fromViewController:(UIViewController *)fromVC
               toViewController:(UIViewController *)toVC NS_AVAILABLE_IOS(7_0){
 
 PDAnimatorPUshPopTransition *animationTransition = [[PDAnimatorPUshPopTransition alloc] init];
 if(operation == UINavigationControllerOperationPush){
  
  animationTransition.animationType = animationTypePush;
 }else if (operation == UINavigationControllerOperationPop){
  
  animationTransition.animationType = animationTypePop;
 }
 
 NSArray *indexPaths = [self.collectionView indexPathsForSelectedItems];
 if (indexPaths.count == 0) {
  return nil;
 }
 
 NSIndexPath *selectedIndexPath = indexPaths[0];
 UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:selectedIndexPath];
 
 // 一定要加上convertPoint:toView:操作
 animationTransition.itemCenter = [self.collectionView convertPoint:cell.center toView:self.view];
 animationTransition.itemSize = cell.frame.size;
 animationTransition.imageName = [NSString stringWithFormat:@"%ld", (long)selectedIndexPath.item];
 
 return animationTransition;
}

2 UIViewControllerTransitioningDelegate+UIViewControllerAnimatedTransitioning

首先需要设置被present的Controller的transitionDelegate

DemoViewControllerTransitionPresentedViewController *presentedVC = [[DemoViewControllerTransitionPresentedViewController alloc] init];
presentedVC.transitionDelegate = self;
[self presentViewController:presentedVC animated:YES completion:nil];

UIViewControllerTransitioningDelegate的代理的协议方法有:

//  prenent  
- (id )animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source;
//  pop  
- (id )animationControllerForDismissedController:(UIViewController *)dismissed;
//  prenent  
- (id )interactionControllerForPresentation:(id )animator;
//  pop  
- (nullable id )interactionControllerForDismissal:(id )animator;

创建子类PDAnimationPresentTransitio继承自基类PDAnimatorBaseTransition,实现- (void)animationPresent,- (void)animationDismiss方法。

PDAnimationPresentTransition.h

#import "PDAnimatorBaseTransition.h"

@interface PDAnimationPresentTransition : PDAnimatorBaseTransition

@end

PDAnimationPresentTransition.m

#import "PDAnimationPresentTransition.h"

@implementation PDAnimationPresentTransition

- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext{
 
 return 1.f;
}

- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext{
 [super animateTransition:transitionContext];
}

- (void)animationPresent{
 
 NSTimeInterval duration = [self transitionDuration:self.transitionContext];
 __weak typeof(self) weakSelf = self;
 
 self.toView.frame = [self.transitionContext initialFrameForViewController:self.to];
 
 self.fromView.frame = [self.transitionContext initialFrameForViewController:self.from];
 
 CGAffineTransform transform = CGAffineTransformIdentity;
 transform = CGAffineTransformScale(transform, 0.001, 0.001);
 self.toView.layer.affineTransform = transform;
 
 [self.containerView addSubview:self.toView];
 
 self.toView.alpha = 0.0;
 
 [UIView animateWithDuration:duration delay:0 usingSpringWithDamping:0.6 initialSpringVelocity:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
  
  self.toView.layer.affineTransform = CGAffineTransformIdentity;
  self.toView.frame = [self.transitionContext finalFrameForViewController:self.to];
  self.toView.alpha = 1.0;
 } completion:^(BOOL finished){
  
  BOOL wasCancelled = [weakSelf.transitionContext transitionWasCancelled];
  [weakSelf.transitionContext completeTransition:!wasCancelled];
 }];
 
}

然后我们在需要present的地方实现UIViewControllerTransitioningDelegate的代理方法。

- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source{
 
 PDAnimationPresentTransition *animationTransition = [[PDAnimationPresentTransition alloc] init];
 animationTransition.animationType = animationTypePresent;
 return animationTransition;
}

- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed{
 
 PDAnimationPresentTransition *animationTransition = [[PDAnimationPresentTransition alloc] init];
 animationTransition.animationType = animationTypePresent;
 return animationTransition;
}

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

更多精彩内容其他人还在看

iOS开发笔记--详解UILabel的相关属性设置

这篇文章主要介绍了iOS开发笔记--详解UILabel的相关属性设置,对初学者具有一定的参考价值,有需要的可以了解一下。
收藏 0 赞 0 分享

iOS中获取系统相册中的图片实例

这篇文章主要介绍了iOS中获取系统相册中的图片实例,具有一定的参考价值没有需要的朋友可以了解一下。
收藏 0 赞 0 分享

iOS 检测网络状态的两种方法

一般有Reachability和AFNetworking监测两种方式,都是第三方的框架,下文逐一详细给大家讲解,感兴趣的朋友一起看看吧
收藏 0 赞 0 分享

IOS 性能优化中离屏渲染

本文主要介绍了IOS 性能优化中离屏渲染的资料,提供了几种方法讲解了优化,有需要的小伙伴可以参考下
收藏 0 赞 0 分享

iOS获取当前设备型号等信息(全)包含iPhone7和iPhone7P

这篇文章主要介绍了iOS获取当前设备型号设备信息的总结包含iPhone7和iPhone7P,包括ios7之前之后的获取方式,本文接的非常详细,具有参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

iOS实现爆炸的粒子效果示例代码

之前在网上看到了一个Android实现的爆炸效果,感觉非常不错,所以自己尝试用iOS来实现下效果,现在将实现的过程、原理以及遇到的问题分享给大家,有需要的朋友们可以参考借鉴,下面来一起看看吧。
收藏 0 赞 0 分享

iOS毕业设计之天气预报App

这篇文章主要为大家详细介绍了iOS毕业设计之天气预报App,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

iOS轻点、触摸和手势代码开发

这篇文章主要为大家详细介绍了iOS轻点、触摸和手势代码开发,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

iOS 实现多代理的方法及实例代码

这篇文章主要介绍了iOS 实现多代理的方法及实例代码的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

iOS文字渐变色效果的实现方法

在大家日常开发iOS的过程中,可能会遇到要实现文字渐变色的效果,这篇文章文章通过示例代码和详细的步骤介绍了如何利用iOS实现文字渐变色的效果,实现后的很不错,感兴趣的朋友们下面来一起看看吧。
收藏 0 赞 0 分享
查看更多