冬天已经过去了,阳光越来越暖洋洋的了。还记得上学的时候,老师总说“春天是播种的季节”,而我还没在朋友圈许下什么愿望。一年了,不敢想象回首还能看到点什么,所以勇往直前。当被俗世所扰,你是否也丢失了自己,忘却了理想。

欲做精金美玉的人品,定从烈火中煅来;
思立掀天揭地的事功,须向薄冰上履过。

这篇博客中,我们主要来叙述一下上述动画效果的实现方案。主要涉及 View Controller 转场动画的知识。

<a href="http://www.iddev.cn">我搭建了个人站点,那里有更多内容,请多多指教。点我哦!!!</a>

Presenting a View Controller

显示一个 View Controller 主要有一下几种方式:

  • 使用 segues 自动显示 View Controller;
  • 使用 showViewController:sender: 和 showDetailViewController:sender: 方法显示 View Controller;
  • 调用 presentViewController:animated:completion: 方法依模态形式显示 View Controller

通过上述方式,我们可以将一个 View Controller 显示出来,而对于显示地形式,我们可以使用 UIKit 中预定义的形式,也可以自定义(即自定义转场动画)。

Customizing the Transition Animations

自定义转场动画中,主要包含以下几个组件:

  • Presenting View Controller(正在显示的 View Controller)
  • Animator(动画管理者)
  • Presented View Controller(要显示的 View Controller)
  • Transitioning Delegate Object(转场代理,用来提供 Animator 对象)

实现自定义转场动画,通常按照以下几个步骤来完成

  • 创建 Presented View Controller;
  • 创建 Animator;
  • 设置 Presented View Controller 的 transitioningDelegate 属性,并实现 UIViewControllerTransitioningDelegate 提供 Animator 对象;
  • 在 Presenting View Controller 中调用 presentViewController:animated:completion: 显示 Presented View Controller;

Presented View Controller

这里,我们将 Presented View Controller 本身作为其转场代理,你也可以使用单独的代理对象。

class PresentedViewController: UIViewController {
let imageView = UIImageView(image: UIImage(named: "jd_add.jpg"))
override func viewDidLoad() {
super.viewDidLoad()
// 1.设置 transitioningDelegate(转场代理)
transitioningDelegate = self
modalPresentationStyle = .custom
view.addSubview(imageView)
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
imageView.frame = CGRect(x: 0, y: 120, width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height - 120)
}
override func touchesBegan(_ touches: Set, with event: UIEvent?) {
self.dismiss(animated: true, completion: nil)
}
}

Animator

Animator 作为转场动画的管理者,主要负责 Presenting 和 Dismissing 动画效果。

动画时长

/// 转场动画时长
func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
return TimeInterval(0.5)
}

执行动画

/// 执行转场动画
func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
switch type {
case .Present:
present(transitionContext: transitionContext)
case .Dismiss:
dismiss(transitionContext: transitionContext)
}
}

Presenting 动画

/// Presenting 动画
func present(transitionContext: UIViewControllerContextTransitioning) {
/** 1.从转场上下文中取出 Presenting/Pressented View Controller 及容器视图 */
guard let presentingVC = transitionContext.viewController(forKey: .from) as? ViewController else {
return
}
guard let presentedVC = transitionContext.viewController(forKey: .to) as? PresentedViewController else {
return
}
let containerView = transitionContext.containerView
/** 2.设置 Presenting View Controller 所显示内容的属性 */
// 对 presentingVC 的视图内容截屏,用于 presentedVC 显示出来时的背景
guard let presentingVCViewSnapshot = presentingVC.view.snapshotView(afterScreenUpdates: false) else {
return
}
// 隐藏 presentingVC 的 view,并将其截屏添加到 containerView 中
presentingVC.view.isHidden = true
containerView.addSubview(presentingVCViewSnapshot)
// 改变 presentingVCViewSnapshot 的焦点
presentingVCViewSnapshot.layer.anchorPoint = CGPoint(x: 0.5, y: 1)
// 更新 presentingVCViewSnapshot 的 frame
presentingVCViewSnapshot.frame = presentingVC.view.frame
/** 3.设置 Presented View Controller 所显示内容的属性 */
presentedVC.view.frame = CGRect(x: 0, y: containerView.bounds.height, width: containerView.bounds.width, height: containerView.bounds.height)
containerView.addSubview(presentedVC.view)
/** 4.设置 Presenting 转场动画 */
UIView.animate(withDuration: transitionDuration(using: transitionContext), animations: {
// 改变 presentingVCViewSnapshot 的 layer 的 transform,使其绕 X轴 旋转,并改变大小
presentingVCViewSnapshot.layer.transform.m34 = -1 / 100.0
presentingVCViewSnapshot.layer.transform = presentingVCViewSnapshot.layer.transform = CATransform3DConcat(CATransform3DMakeRotation(CGFloat(0.1), 1, 0, 0), CATransform3DMakeScale(0.85, 0.95, 1))
// 改变 presentedVC 的 view 的 transform
presentedVC.view.transform = CGAffineTransform(translationX: 0, y: -containerView.bounds.height)
}) { (finished) in
// 告知 UIKit Presenting 转场动画结束(很重要)
transitionContext.completeTransition(true)
}
}

Dismissing 动画

/// Dismissing 动画
func dismiss(transitionContext: UIViewControllerContextTransitioning) {
/** 1.从转场上下文中取出容器视图、Presenting/Pressented View Controller 及其 view 的截屏 */
let containerView = transitionContext.containerView
guard let presentingVC = transitionContext.viewController(forKey: .from) as? PresentedViewController else {
return
}
guard let presentedVC = transitionContext.viewController(forKey: .to) as? ViewController else {
return
}
let subviewsCount = containerView.subviews.count
let presentedVCViewSnapshot = containerView.subviews[subviewsCount - 2]
/** 2.设置 Dismissing 转场动画 */
UIView.animate(withDuration: transitionDuration(using: transitionContext), animations: {
// 将 presentedVCViewSnapshot 的 transform 恢复到初始值
presentedVCViewSnapshot.layer.transform = CATransform3DIdentity
// 将 presentedVC 的 view 的 transform 恢复到初始值
presentingVC.view.transform = CGAffineTransform.identity
}) { (finished) in
// 使 presentedVC 的 view 显示出来,并隐藏其截屏
presentedVC.view.isHidden = false
presentedVCViewSnapshot.removeFromSuperview()
// 告知 UIKit Dismissing 转场动画结束(很重要)
transitionContext.completeTransition(true)
}
}

Transitioning Delegate

// MARK: - 2.实现 UIViewControllerTransitioningDelegate 提供 Animator
extension PresentedViewController: UIViewControllerTransitioningDelegate {
/// Present
func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
return MyAnimator(type: .Present)
}
/// Dismiss
func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
return MyAnimator(type: .Dismiss)
}
}

Present

@IBAction func present() {
let presentedVC = PresentedViewController()
present(presentedVC, animated: true, completion: nil)
}

关于 View Controller Transition 就介绍到这里,你应该熟悉了其使用方法,至于博客中的动画效果,我想就没办法深究了,这是一个花费时间苦差事。

<a href="http://www.iddev.cn">我搭建了个人站点,那里有更多内容,请多多指教。点我哦!!!</a>

View Controller Transition:京东加购物车效果的更多相关文章

  1. iOS7之定制View Controller切换效果

    在iOS5和iOS6前,View Controller的切换主要有4种: 1. Push/Pop,NavigationViewController常干的事儿 2. Tab,TabViewControl ...

  2. UIStoryboard类介绍(如何从Storyboard中加载View Controller)

    如何从Storyboard中加载View Controller? 1. 首先了解下UIStoryboard类: @class UIViewController; @interface UIStoryb ...

  3. js实现仿购物车加减效果

    代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <tit ...

  4. 【IOS笔记】View Controller Basics

    View Controller Basics   视图控制器基础 Apps running on iOS–based devices have a limited amount of screen s ...

  5. 自己定义View Controller转换动画

    原文链接 : Introduction to Custom View Controller Transitions and Animations 原文作者 : joyce echessa 译文出自 : ...

  6. Android -- 贝塞尔二阶实现饿了么加入购物车效果

    1,上周我们实现了简单的三阶贝塞尔曲线效果实例,今天是使用二阶贝塞尔曲线加动画实现的加入购物车效果,在码代码过程中出现了些问题,过一下和大家来探讨探讨,先看一下效果图 2,从上面的效果来看我们基本上可 ...

  7. Swift:超炫的View Controller切换动画

    匿名社交应用Secret的开发者开发了一款叫做Ping的应用,用户可以他们感兴趣的话题的推送. Ping有一个很炫的东西,就是主界面和之间切换的动画做的非常的好.每次看到一个非常炫的动画,都不由得会想 ...

  8. presenting view controller

    Present ViewController详解 Present ViewController Modally 一.主要用途 弹出模态ViewController是IOS变成中很有用的一个技术,UIK ...

  9. View Controller Programming Guide for iOS---(四)---Creating Custom Content View Controllers

    Creating Custom Content View Controllers 创建自定义内容视图控制器 Custom content view controllers are the heart ...

随机推荐

  1. Linux下网络流量实时监控工具大全

    在工作中发现,经常因为业务的原因,需要即时了解某台服务器网卡的流量,虽然公司也部署了cacti软件,但cacti是五分钟统计的,没有即时性,并且有时候打开监控页面不方便,个人喜欢随手在某台服务器上输入 ...

  2. Android源码编译jar包BUILD_JAVA_LIBRARY 与BUILD_STATIC_JAVA_LIBRARY的区别(一)

    一般情况下,在Android源码下编译一个jar包的典型makefile(Android.mk)如下: 在文件中加入以下内容: LOCAL_PATH:= $(call my-dir)#make jar ...

  3. iOS开发实现Label中多颜色多字体

     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(8, 100, 300, 30)]; label.textColor = wor ...

  4. 用while判读循环语句1+1/2!+1/3!+...1/20!的和阶乘的计算方法 式:n!=n*(n-1)!

    package com.chongrui.test; /* *用while判读循环语句1+1/2!+1/3!+...1/20!的和 *使用BigDecimal类完成大数字与高精度运算 公式:n!=n* ...

  5. UVa 10400 - Game Show Math

    题目大意:给出n(n<100)个正整数和一个目标数,按照给出数的顺序,运用+.-.*./四则运算(不考虑优先级),判断能否得出所要的结果. 首先考虑的就是暴力枚举,不过时间复杂度为O(4n),会 ...

  6. iOS 开发 旧版 framework

    0. 参考 http://www.cocoachina.com/ios/20150127/11022.html http://www.cnblogs.com/gcb999/p/3296414.html ...

  7. 二叉树最大路径和-Binary Tree Maximum Path Sum

    Given a binary tree, find the maximum path sum. For this problem, a path is defined as any sequence ...

  8. java web几种开发模式(转)

    Java Web开发方案有多种可供选择,这里列举一些经典的开发模式进行横向比较,为Java Web的开发模式选择提供参考.除此之外还有好多方案(如Tapestry和Wicket)并不了解,这里就不列举 ...

  9. windows下安装php5.2.*,php5.3.*,php5.4.*版本的memcache扩展

    注:如使用集成环境成功率低,请自行配置php apache,表示win7下wamp php5.4.3基础上配置拓展,成功率极低.费时. 拓展安装调试方法: 编写调试php文件 <?php  me ...

  10. Spring @Transactional使用的示例

    Spring @Transactional使用的示例: 参考: http://blog.csdn.net/seng3018/article/details/6690527 http://blog.si ...