Urtaq / URMovingTransitionAnimator

Moving view transition with the blurring effect between view controllers for Swift3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URMovingTransitionAnimator

Swift podplatform pod poddoc license travis codecov CocoaPods compatible FOSSA Status

FOSSA Status

What is this?

Moving view transition with the blurring effect between view controllers for Swift3
This code style is the Protocol Oriented Programming.
So you don't need to inherit. Just Implement protocols.
You can handle some parameter to customize this transition. e.g. scale, duration, etc.

sample1sample1

Requirements

  • iOS 8.1+
  • Swift 3.0+

Installation

Cocoapods

Add the following to your Podfile.

pod "URMovingTransitionAnimator"

Examples

See the Example folder.
Run pod install and open the .xcworkspace file.

Usage

import URMovingTransitionAnimator

1. Set the transition initialization in the transition starting viewcontroller

class viewController: UIViewController, URMovingTransitionMakable {
    ...
    override func viewDidLoad() {
        super.viewDidload()
        
        self.initMovingTrasitionGesture()
        
        ...
    }
    
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)

        self.initMovingTransitionNavigationDelegate()
        
        ...
    }

    deinit {
        self.removeMovingTransitionGesture()
        
        ...
    }
    
    ...

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        ...

        if let cell = tableView.cellForRow(at: indexPath) as? URExampleTableViewCell {
            self.makeBlurredTransitionAnimator(target: cell.imgView, baseOn: tableView.superview!, duration: 0.8)
            
            // if you want to add scaling animation, use makeTransitionAnimator function like below
            // At the beginning, the scaling animation will be showed!!
            // self.makeBlurredTransitionAnimator(target: cell.imgView, baseOn: tableView.superview!, duration: 0.8, needScaleEffect: true, scale: 1.05)
            
            // if you want to transition without the blur effect, you can use this make function!!
            // self.makeTransitionAnimator(target: cell.imgView, baseOn: tableView.superview!, duration: 0.8, needScaleEffect: true, scale: 1.05)
        }
        
        ...

        // push view controller
    }
    
    ...
}

2. Set the destination frame in the transition finishing view controller

class finishViewController: UIViewController, URMovingTransitionReceivable {
    ...
    
    var transitionView: UIView?
    
    ...
    
    func transitionFinishingFrame(startingFrame: CGRect) -> CGRect {
        let frame = {view's frame to be the destination}
        let finishingFrame = CGRect(origin: CGPoint(x: 0, y: 64), size: frame.size)

        return finishingFrame
    }
    
    ...
}

3. πŸ˜€ Configurable parameters of UIMovingTransitionAnimator πŸ˜€

  • whether you need to clip the bounds of target view
  • scale up or down effect
    • This is applied at the beginning of transition.
    • For using this, you need to set the scale value over 1.0 or below 1.0
  • finishing animation duration
  • finishing animation duration for the Pop transition
  • whether you need to run the whole transition completion callback right away after finishing the transition

To-Do

  • refactoring the initailization for the convenient usage

License

URMovingTransitionAnimator is available under the MIT license. See the LICENSE file for more info.

About

Moving view transition with the blurring effect between view controllers for Swift3

License:MIT License


Languages

Language:Swift 85.8%Language:Ruby 14.2%