Specifies a transition to apply to a `UIView` in an animation block.
Questions tagged [uiviewanimationtransition]
407 questions
0
votes
2 answers
Custom transition between UIViewControllers
I've just changed my app from being TabView driven to CollectionView driven, as there are too many sections of my app to be feasible for a TabView. When you start the app you are presented with several items in a CollectionView and selecting any of…

swampf0etus
- 401
- 3
- 10
0
votes
1 answer
iOS Slide out menu with UINavigationController
I'm trying to write a slide out menu that uses a main viewcontroller(VC) and three subviews. I want the subviews to be able to be UINavigationControllers if I want...but I'm having trouble adding them as children of the main VC.
The main view is…

d2burke
- 4,081
- 3
- 39
- 51
0
votes
1 answer
Why is UIView alpha animation slow from 1 to 0 compared to 0 to 1?
I have a custom view which I need to hide/unhide with animation.
UIView animations are not working on hidden property.
So I have overridden setHidden where I modify the alpha with animation.
It works but while hiding it always seem to be slower than…

Amogh Talpallikar
- 12,084
- 13
- 79
- 135
0
votes
1 answer
iOS: UIImageView doesn't respond to tap gestures between animations
I have a multiple images to show in imageview using cross dissolve animation and taping on image displays detail about image. Following is the code working but tap on imageview is failing when it's animating from one image to another.
Code for…

Paresh Masani
- 7,474
- 12
- 73
- 139
0
votes
0 answers
Animation in a cell where as one text goes upwards out of the cell and another text comes upwards from bottom
I have to do a simple animation where in a cell. There are two labels in this cell. I want the text in it to move upwards out of the cell and at the same time next texts move upwards from bottom. I have done this using two separate labels apart from…

user1010819
- 2,691
- 3
- 15
- 14
0
votes
2 answers
Crash with custom segue
I create a custom segue:
-(void)perform{
UIViewController *destination = [self destinationViewController];
UIViewController *source = [self sourceViewController];
[source.view addSubview:destination.view];
CGRect destionationFrame =…

Fran Fox
- 575
- 1
- 4
- 5
0
votes
1 answer
Custom UIViewController modal transition from right like Flipboard
I need to make a custom modal transition segue on iPad to make that the destinationViewController appears from right, covering window half size and maintaining visible the initial View. More or less like the right panel in Flipboard App.
Any…

Fran Fox
- 575
- 1
- 4
- 5
0
votes
1 answer
UIViewAnimation from view and back
I have a question regarding transitioning between uiviews.
I have a view1 that transition to view2, but when i want to transition back it doesn't work.
Action called on first view to flip to the second view.
- (IBAction)flip:(id)sender {
[UIView…

zevonja
- 193
- 1
- 14
0
votes
1 answer
UICollectionViewCell add animation for selected/highlighted item
I'm implementing simple collection view with images inside cells. The task that I want to achieve is when user taps on the cell - there should be flip animation and some details have to appear at the same cell.
I've tried a lot of things to achieve…

mz87
- 1,398
- 2
- 13
- 13
0
votes
1 answer
View Changes Height After Transition
I am transitioning from one view to another using UIViewAnimationOptionTransitionCrossDisolve.
The issue I am having is, after the transition takes effect, I have a 20 pixel gap at the top of my screen, and the new UIViewController pushes up so the…

Luke Irvin
- 1,179
- 1
- 20
- 39
0
votes
2 answers
Using UIViewAnimationTransitionFlipFromRight to flip over a UIButton when pressed and show a new button on "the other side"
EDITED For MOXY.
I have an array of buttons with an image on top and array of buttons whose views are background colors. When i click on a button i want to retrieve that button index and use that index to also get the appropriate background color…

cspam
- 2,911
- 2
- 23
- 41
0
votes
1 answer
Transition not showing between views in a custom UIStoryboardSegue
I have written a custom UIStoryboardSegue.
The only code in my CustomSegue.m file is:
-(void) perform {
UIViewController* sourceViewController = (UIViewController *) self.sourceViewController;
UIViewController* destinationViewController =…

Racing Tadpole
- 4,270
- 6
- 37
- 56
0
votes
1 answer
Implement same page transition in UIDeviceOrientationLandscapeLeft and UIDeviceOrientationLandscapeRight
I have developing project in iOS 6.0 sdk which should work on iOS4.3+ devices, in my project i am using the page curl to navigate betwwen pages , but the page curl happening in LandscapeLeft is not as same as Pagecurl in Landscape Right. I want the…

Yuva
- 125
- 3
- 11
0
votes
2 answers
Swap/ Transitioning between views iOS programming
I am a newbie to IOS programming and currently i have a tab bar application with two tabs. I have two questions.
The first tab shows a map, imagine it with some pushpins. There is a button on the navigation bar and when this is clicked i want the…

Shawn Frank
- 4,381
- 2
- 19
- 29
0
votes
1 answer
UIView - Animating a view
I would like to have my UIView opening to one side with the press of a button. I mean just like a door would open, with its side fixed, but not a complete rotation, just to a 30-40° angle. How can I do that? I tried flipping the UIView with…

Alessandro
- 4,000
- 12
- 63
- 131