Last active
June 6, 2019 01:35
-
-
Save brunomunizaf/d589a8691aa2be26c3db77a1eea9e270 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class OtherViewController: UIViewController { | |
| // MARK: - IBOutlets | |
| @IBOutlet weak var imageView: UIImageView! | |
| } | |
| // MARK: - AnimatedTransition | |
| extension OtherViewController: AnimatedTransition { | |
| func imageView(for transition: TransitionDelegate) -> UIImageView? { | |
| return imageView | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment