Questions tagged [uiviewanimationtransition]

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

407 questions
3
votes
1 answer

Segues vs. UIViewControllerAnimatedTransitioning

While searching how to perform custom animations when transitioning from one controller to another I found some info about UIViewControllerAnimatedTransitioning. So the question is: why do we even need this if we have custom segues? Are they…
hasrthur
  • 1,410
  • 15
  • 31
3
votes
2 answers

Occasional Crash with Custom View Controller Transition

I've got a UIViewController that presents/Dismisses another view controller with a custom animation using the transitioningDelegate pattern introduced in iOS 7. I've noticed in my Crashlytics log files that this section of the code is occasionally…
3
votes
1 answer

UIToolbar with UINavigationController cases gray box on the navigation bar during animation

Strange problem with the navigation bar and UIToolbar when they are on the same view on the same time. When swiping back the vc to return the firstvc on the screen, the strange gray box appears on the navigation bar: Animation UIViewController…
3
votes
2 answers

Flickering for multiple concurrent calls to UIView transitionWithView with UIViewAnimationOptionTransitionCrossDissolve on UIImageView

I would like to animate the change of an image to another from a UIImageView with: [UIView transitionWithView:self.scrollView duration:1 options:UIViewAnimationOptionTransitionCrossDissolve |…
3
votes
0 answers

How to do 3D sides-of-cube transition between view controllers in iOS

SPUN app for iPhone has a great vertical 3D transition between view controllers. What are some open source libraries designed for this purpose or similar cool transition effects?
3
votes
2 answers

UIModalTransitionStyleFlipHorizontal flips Vertically in Landscape Mode

I am developing an App in Landscape Mode. While doing UIModalTransitionStyleFlipHorizontal flips in Landscape Mode, it flips Vertically. Is there any way to fix it? Here is the code: InfoViewController *vc = [[InfoViewController alloc]…
3
votes
1 answer

How to Scale uiview and everything inside it (other custom drawn uiviews) with animation?

I have a uiview that contains other custom drawn uiview inside it. Now I want that, when a user clicks this parent view it would expand to a new defined frame with animation. I had some success using the animation block. The problem is that the…
BangOperator
  • 4,377
  • 2
  • 24
  • 38
3
votes
1 answer

How to remove Black Color in ios during the Screen Navigation?

As per the image, I am using navigationController with my application. During the Transition from one screen to other screen, a black color is showing. My RootViewController doesn't have the navigationBar (it is hidden) whereas the other screens…
3
votes
2 answers

Simultaneously showing and hiding with transitionWithView

I have tried several variations on the following to no avail. What I want is a curl down transition that shows some things and then a curl transition back up that does the opposite. There is transparency so the effect is that of a clear thing…
Kardasis
  • 901
  • 12
  • 20
3
votes
1 answer

Error when attempting to set custom animation for the viewController transition iOS4

I am building an iPhone app and I have implemented a section for knowledge base about the app's subject matter. I used a table view and navigation viewController so that upon selecting any cell in the table a new view controller will be created and…
2
votes
0 answers

Transition effects not working on tablet

I had used a transition animation in my application.it runs well on emulator and displaying effects on it. But when i run the application on tablet it displays nothing only normal splash screen effect. is there any change in code or declare…
naleshmadur
  • 95
  • 1
  • 10
2
votes
3 answers

UIView transition animation not showing subviews

I'm using a container view as a superview to two subviews. I want to "flip" one subview to another subview. The first subview happens to be blank and the second subview is a UILabel that has some text. The flip is happening but I do not see my…
David Nix
  • 3,324
  • 3
  • 32
  • 51
2
votes
1 answer

UIViewAnimationTransitionCurlUp working horizontally

I try to make the UIViewAnimationTransitionCurlUp work horizontally so, I rotate the view where the animation is applied. But the didn't work, the animation stay from the bottom to the top. Any idea? first = [[PDFPortraitView alloc]…
Alak
  • 23
  • 4
2
votes
1 answer

UIView transitionFromView: how can I do black background during transition?

I use next code. [UIView transitionFromView:viewA toView:viewB duration:1.0 options: UIViewAnimationOptionTransitionFlipFromLeft completion: ^(BOOL inFinished) { viewB.hidden = NO; …
Voloda2
  • 12,359
  • 18
  • 80
  • 130
2
votes
2 answers

How to animate constraints one by one in IOS?

I have 6 views. I want to animate the constraints one by one, ie, i need the animation on second view only after first, then after second the third and so on. I have added the code in the completion handler of the animations, but it is not working.…