Specifies a transition to apply to a `UIView` in an animation block.
Questions tagged [uiviewanimationtransition]
407 questions
0
votes
1 answer
Interactive Animated Transition between NavigationControllers
When presenting a new ViewController using the:
UINavigtionController *nav = [[UINavigationController alloc] initWithRoot(myVC)]
[self presentViewController:nav animated:YES completion:nil];
The UIViewControllerTransitionDelegate is never…

trdavidson
- 1,051
- 12
- 25
0
votes
1 answer
Custom transition between UIViewControllers does not work
I have object that manage custom transition:
@interface NavigationManager : NSObject
-(NSTimeInterval)transitionDuration:(id)transitionContext;
…

Dimitrio
- 151
- 4
- 12
0
votes
1 answer
UIViewController Custom Transition in iOS8
Does anyone have any ideas this no long does a custom flip animation in iOS8 but does in iOS7.
In iOS8 i just get the view presented with no animation but when that view is dismissed
i do get the custom flip transition. Its like it is forgetting to…

Matthew
- 161
- 9
0
votes
1 answer
How to automatically change/transit from one view to another, without pushing a button or any action
How to automatically change/transit from one view to another, without pushing a button or any action, just after some time, say 2,3 seconds in Xcode/Objective-C, how would the code look like, and where to write it?

BitPerBit
- 1
- 2
0
votes
0 answers
SpriteKit crash on transitionWithView
I have several crash reports with Collection <__NSArrayM: 0x12345678> was mutated while being enumerated. However in my testing I cannot reproduce the error.
This seems be triggered via a chain of events when I transition to a different SKView. …

nacross
- 2,013
- 2
- 25
- 37
0
votes
0 answers
UIView animation complete before the given duration
I have an animation of UIView using the following block based animation method. The animation basically resize a view width from 300 pixel to 0 in 60 seconds. But the problem is view is resized to 0 width even before 60 seconds(around 55-56 seconds)…

russell
- 3,668
- 9
- 43
- 56
0
votes
1 answer
Custom UIViewController Transition by using custom segue class
im trying to implement a custom transition-style to fade in a new Viewcontroller by using a custom segue and implementing a segue class.
I almost manages to implement this but every time i run the application i get the warning/error:
"Unbalanced…

vincent bobinski
- 1
- 1
0
votes
1 answer
UIImage Cross Dissolve not animating using UIView transitionWithView
I am attempting to cross-fade from one UIImage to another UIImage which are contained in a UIImageView. This seems like it should be accomplished with UIView Animation with the following code:
#import "ViewController.h"
@interface ViewController…

blueHula
- 1,581
- 1
- 9
- 16
0
votes
0 answers
How to change background layer gradient color slowly for UIview?
In view did load method all array loading with different colors floating point.
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
backgroundLayerOne = [CAGradientLayer…

user3693647
- 11
- 6
0
votes
1 answer
How to create a custom timing function?
I am busy with a custom animated transition between UIViewControllers and I like the the UIView to jump and then fill up the space similar to the following screenshot:
Now there isn't an "Option" I could create such an effect. Now I could create a…

Mark
- 16,906
- 20
- 84
- 117
0
votes
1 answer
Move UIViews inside another UIViewController
Have you used Tinder app?
That app is full of nice effects that makes a great UX experience in my opinion.
Try to open it and you see the launch image with a red flame at the center of the screen.
Seconds after the flame moves itself to the…

Fred Collins
- 5,004
- 14
- 62
- 111
0
votes
0 answers
Animate view during navigation controller transition in iOS7
In view for my view controller I have a animation running on the time. However when user swipes the view from the left and slides it to the right (to go back to preview view controller in UINavigationController) the animation stops. It's crucial for…

mgamer
- 13,580
- 25
- 87
- 145
0
votes
2 answers
View Transition stammering when KeyBoard comes up iOS
Here is a transition code I have for Showing ViewB from ViewA
CGPoint c = thepoint;
CGFloat tx = c.x - floorf(theview.center.x) + 10;
CGFloat ty = c.y - floorf(theview.center.y) + 100;
[UIView animateWithDuration:0.5
…

Maheswaran Ravisankar
- 17,652
- 6
- 47
- 69
0
votes
1 answer
Cross-Dissolve UIImage in UITableViewCell or UICollectionViewCell
I have a UICollectionView that has Cells that contain ImageViews in them. After downloading the images that I want to display in the cell I'd like to cross-dissolve my image with the placeholder image that's already inside the cell.
Everything works…

Georg
- 3,664
- 3
- 34
- 75
0
votes
1 answer
flip two subview doesn't work continuosly
I have found a solution here How to flip an individual UIView (without flipping the parent view)
but it seems that this doesn't work for me. In Interface Builder i have set up all with a uiview and inside that two uiviews, with the same size and the…

gcc
- 15
- 1
- 6