Developer defined transition between views, which gives full control to define the animations that are used when a navigation from one view controller to another occurs.
Questions tagged [custom-transition]
86 questions
0
votes
1 answer
iOS 7 - Maintain view controller instance in Storyboard segue
I have an interactive custom view controller transition based on a storyboard segue (push).
The target view controller takes some time to be loaded as it contains a table with a lot of data; moreover when I leave this vc and come back, I need the…

DAN
- 919
- 1
- 6
- 23
0
votes
2 answers
Call custom transition animator using a programmatically created segue IOS
the project I am working on needs to have a custom transition between two view controllers. I have setup and implemented UIViewControllerTransitioningDelegate by overriding the method like:
-…

amit09gupta
- 73
- 1
- 6
0
votes
1 answer
Best practice to transition between view controllers in a custom container view controller in a storyboard?
I have a setup that is very similar to a UITabBarController but for various reasons I need to create my own custom container root controller.
I would like to create a custom transition between my two view controllers as specified in the picture (VC…

DanielRak
- 239
- 1
- 2
- 11
0
votes
1 answer
Custom transition for push and standard transition for pop
I have a View Controller that has a custom push transition when a table cell is tapped and performs the standard pop transition when the back bar button item is tapped. The problem is when I try to go to the same view controller from the previous…

pedroremedios
- 763
- 1
- 11
- 39
0
votes
2 answers
Following touch / using gesture recognizer translation on custom interactive transitioning
I created a custom transition for navigation controller where as the user pans up, the next controller's view revealed below as the current controller's view moves in upward direction. I want that view to move by following the touch (as if it is…

Nihat
- 3,055
- 3
- 18
- 28
0
votes
2 answers
how to present a viewcontroller using interactive transition
my requirement is when i swipe from right of the screen(viewcontroller A) then need to push to next viewcontroller(viewcontroller B) using interactive transition.Use the same mechanism for dismiss also, when i swipe from left of the…

abymathew
- 115
- 1
- 1
- 11
0
votes
1 answer
iOS - 'Pan' navigation flow with Custom Transitions
I'm trying to use iOS7's custom transitions in order to let the user navigate between view controllers through a kind of 'pan' effect.
As depicted here:
I need the background pattern to continue also outside the vc's bounds, so that when the user…

DAN
- 919
- 1
- 6
- 23
0
votes
1 answer
Interactive Transitions, how Apple implemented it?
I'd like to know how Apple had implemented its great custom interactive transition system and I think it should be interesting to create something similar just as experiment.
This is my thoughts on this "problem".
The developer creates the…

MatterGoal
- 16,038
- 19
- 109
- 186
0
votes
2 answers
Alfresco Activiti Workflow : How to add custom Task Actions instead of default "Task Done" and "Cancel" Actions?
I am using Alfreso 4.2c and Activiti to create my workflows. I have a requirement when in each task I need to provide different Actions to users. For example, in of the Task I need to give Actions like "Re-Schedule Meeting", "Cancel Meeting", "Send…

Shraddha
- 1,052
- 11
- 22
0
votes
1 answer
UICollectionView animate individual items during transition
Is it possible to animate each item individually in a UICollectionView when I transition to a child View Controller? I have a UICollectionViewController and when an item is selected I want all items surrounding that item to bounce away from the…

Jeswin
- 238
- 1
- 3
- 16
-1
votes
1 answer
Type 'AnimationController' does not conform to protocol 'UIViewControllerAnimatedTransitioning'
import Foundation
import UIKit
enum TransitionType {
case Presenting, Dismissing
}
class AnimationController: NSObject, UIViewControllerAnimatedTransitioning {
var duration: NSTimeInterval
var isPresenting: Bool
var originFrame:…

teamiOS
- 11
- 5