-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Interactive Transition
Check out the Interactive transitions with Hero (Part 1) blog post for a more in-depth tutorial on interactive transition.
When implementing a interactive transition, the general approach is to setup a gesture recognizer first. Then do the following 3 things inside the gesture handler:
-
Tell Hero when to start the transition
Usually happens when
gestureRecognizer.state == .began
. Begin the transition as normal. -
Tell Hero to update the animations through out the transition
Use
Hero.shared.update(progress:)
&Hero.shared.apply(modifiers:to:)
to modify the progress & view states. -
Tell Hero to end/cancel the transition
Use
Hero.shared.end()
orHero.shared.cancel()
Hero.shared
is the singleton object you can operate with when doing an interactive transition. It has the following 4 methods that are useful for interactive transition:
/**
Update the progress for the interactive transition.
- Parameters:
- progress: the current progress, must be between 0...1
*/
public func update(progress: Double)
/**
Finish the interactive transition.
Will stop the interactive transition and animate from the
current state to the **end** state
*/
public func end(animate: Bool = true)
/**
Cancel the interactive transition.
Will stop the interactive transition and animate from the
current state to the **begining** state
*/
public func cancel(animate: Bool = true)
/**
Override modifiers during an interactive animation.
For example:
Hero.shared.apply([.position(x:50, y:50)], to:view)
will set the view's position to 50, 50
- Parameters:
- modifiers: the modifiers to override
- view: the view to override to
*/
public func apply(modifiers: [HeroModifier], to view: UIView)
This example is taken from ImageViewController.swift
inside the example project.
func pan() {
let translation = panGR.translation(in: nil)
let progress = translation.y / 2 / collectionView!.bounds.height
switch panGR.state {
case .began:
Hero.shared.setDefaultAnimationForNextTransition(.fade)
hero_dismissViewController()
case .changed:
Hero.shared.update(progress: Double(progress))
if let cell = collectionView?.visibleCells[0] as? ScrollingImageCell {
let currentPos = CGPoint(x: translation.x + view.center.x, y: translation.y + view.center.y)
Hero.shared.apply(modifiers: [.position(currentPos)], to: cell.imageView)
}
default:
if progress + panGR.velocity(in: nil).y / collectionView!.bounds.height > 0.3 {
Hero.shared.end()
} else {
Hero.shared.cancel()
}
}
}