Questions tagged [uiviewanimationtransition]

Specifies a transition to apply to a `UIView` in an animation block.

407 questions
0
votes
1 answer

How to have a better transition between controllers for the navigation bar?

When I'm in the 2nd view controller and I press the back button, the navigation bar disappears brutally. I would like it to slide away from the screen with the view controller. And when I press a button to go to the 2nd view controller, the…
AziCode
  • 2,510
  • 6
  • 27
  • 53
0
votes
0 answers

iOS swift transitionFromView disables the whole view

I have three views that I flip with some buttons (at startup one of them is visible while the two others are hidden). Each view contains a view container that embeds a view controller and this is where I put all my content for each view. When my…
0
votes
2 answers

View transition animation having a snapshot

I have several swipe and pan gestures to navigate through some views. When I pan the view, a new ViewController will be instantiated and placed at the edge of the window. Along my pan, the view will come into view on top of the current view. If the…
Hendrik Smoels
  • 240
  • 3
  • 12
0
votes
0 answers

UIView AnimateWithDuration and UIViewAnimationOptionTransitionCurlUp

I'm trying to create an unwind segue with the page curl animation. I've followed a tutorial I found only to have the destination view controller call segueForUnwindingToViewController to return an instance of my custom segue class. However, at best…
0
votes
1 answer

How to implement UIViewControllerContextTransitioning compatible with interactive transitions

I am on my way to create a custom navigation controller. Indeed, I would like to have a UINavigationController with a "content view" which is not necessarily the full screen, but which can be any view. Since I also would like to use custom…
0
votes
1 answer

Swift: Animation effect when transition between one view to another view

I am doing wow slider animation effect in my app by using swift. I added 3 images. It is sliding one by one. But I need animation like this. I don't know how to do when transition from one image to another. Kindly guide me. Animation effect is…
0
votes
0 answers

Flip and zoom 3D transition problems (iOS 7+)

I'm trying to build transition for card flip & zoom. I've made its model in Origami - Movie (less that 1Mb) As you can see there are 3 transforms applied at the same time: 1. moving center of the view to the centre of the screen 2. scaling 3. 3D…
OgreSwamp
  • 4,602
  • 4
  • 33
  • 54
0
votes
1 answer

Animation ends with error in custom interactive transitioning animation?

I am setting up a custom transitioning animation. Everything works fine except the error at the end of the animation: As you see, after the interactive animation, the animation just excutes again. This is the method i use to handle the the…
duan
  • 8,515
  • 3
  • 48
  • 70
0
votes
1 answer

Action on UIAlertController that does not dismiss AlertController? (Disable dismissing)

I have an action sheet (UIAlertController with style of UIAlertControllerStyleActionSheet) with a few actions, presented on an iPad as a popover. What I want is, when a user selects one of the options (say, the first one), I want the action sheet to…
0
votes
0 answers

How to implement a tap to play transition screen?

I have an app that has a ball you have to tilt through gaps in rectangles to gain points. The rectangles approach from the right side of the screen (moving left). The ball is very sensitive and if the player has the phone held anything otherwise…
Benyam Ephrem
  • 448
  • 6
  • 20
0
votes
1 answer

Permanently move a frame of custom UIView on screen

I'm having a little problem about animations on iOS with Objective-c. I'm trying to create a card game, and as the game start, the deck distributes the cards on the table, with an animation. The problem is that at the beginning the cards are all in…
Diiaablo
  • 166
  • 1
  • 13
0
votes
1 answer

slid-in view block my button responsiveness at the bottom of the view

I have a main view, and inside this view I have a button that animating another view to come from the bottom if the view to the middle (+-). at the bottom of the view (slidingView) i have a cancel button, and this button is not responding after…
0
votes
1 answer

How to add a slide-in view effect?

How can I create this simple slide-in from the bottom view effect? * I have an action sheet method and i want to create this view controller effect that when i tap on one of the action sheet buttons i will have this view sliding in from the bottom…
0
votes
1 answer

UIViewController with Custom Transition; Lost After Modal Presentation

Scenario: one UIViewController uses a custom transition to present another VC. This VC does not take up the entire screen; it's appearing as a layer on top of the first. Everything here is working great. Now the presented VC wants to show a…
Aaron Vegh
  • 5,217
  • 7
  • 48
  • 75
0
votes
1 answer

Animations/transitions when switching between views iOS8

I'm very new to iOS programming and I have two simple UIView's. .h file: @property (strong, nonatomic) IBOutlet UIView *mainPageOutlet; @property (strong, nonatomic) IBOutlet UIView *secondPageOutlet; .m file: -…