Skip to main content

All Questions

Filter by
Sorted by
Tagged with
2 votes
2 answers
700 views

programatically create horizontal slide view controller transition in ios

I would like to use horizontal slide view controller transition without implementing navigation view controller. Under modalTransitionStyle property I only found the CoverVertical, CrossDisolve, ...
potato's user avatar
  • 4,619
0 votes
1 answer
56 views

Completely unload a ViewController at modalTransition?

normally after a modal transition, the second viewController runs further "behind" the visible ViewController in the background. Is there a possibility to completely unload the second ViewController ?...
appcodix's user avatar
  • 432
3 votes
1 answer
1k views

UIViewControllerContext initalFrameForViewController & finalFrameForViewController show 0 for all values

I'm implementing my own custom UIViewController transition and when I output to the debugger the frame of the TO View Controller, I receive {{0, 0}, {0, 0}} for both initial and final frame. I ...
cohen72's user avatar
  • 3,020
0 votes
2 answers
408 views

UIViewController Transition Goes To Black

I have the code below to transition from one UIViewController to a UIViewController with a Storyboard. #import "How_FarViewController.h" MainViewController *screen = [[MainViewController alloc] ...
Seb OH's user avatar
  • 825
1 vote
0 answers
607 views

Custom UIViewController transition to UITableViewController with iOS7 API

For iOS7 version of my app I'm implementing side menu control like this one - https://github.com/romaonthego/RESideMenu. This implementation is ver buggy so I decided to reimplement it by myself from ...
Ilya Puchka's user avatar
72 votes
6 answers
8k views

iOS7 UIModalTransitionStyleFlipHorizontal bounces after transition

I'm updating my app for iOS 7 and I discovered a weird problem. I'm presenting a UIViewController wrapped in a UINavigationController with UIModalTransitionStyleFlipHorizontal. In iOS 6 it works ...
Rene's user avatar
  • 721
0 votes
2 answers
556 views

Show View Controller Modally on First Startup

I'd like to have a view with instructions on how to use my app show up on the first time the app is opened. I have handled the problem of the only showing this view on the first startup using ...
Kevin_TA's user avatar
  • 4,685
1 vote
2 answers
12k views

presentModalViewController from UIModalTransitionStylePartialCurl viewController

I have a modal view that is presented via UIModalTransitionStylePartialCurl transition. In that modal view there is a button, which I would like to: dismiss the current modal view (curl down), then ...
Keller's user avatar
  • 17.1k
1 vote
1 answer
2k views

UIModalTransitionStyleFlipHorizontal doesn't work

I try to change the modalTransitionStyle property of my modal view. Every style work except for FlipHorizontal. If I choose this, nothing happens. I have an UINavigationController which should be ...
Mennny's user avatar
  • 405
2 votes
5 answers
9k views

How do you present a UIViewController from the top of the screen instead of the bottom?

I am using a UIViewController and I use presentModalViewController:controllerr animated:YES to present it but I would like if it would slide down from the top of the screen instead of up from the ...
Aspyn's user avatar
  • 657
2 votes
1 answer
1k views

Opening a new UIVIewController by first deactivating UIModalTransitionStylePartialCurl

I have three UIViewControllers: MainViewController, CurledViewController and SecondayViewController. On MainViewController I have one UIButton in the MainViewController that displays the ...
Mat Kelly's user avatar
  • 2,358
9 votes
1 answer
5k views

What is difference between UIModalTransitionStyle and UIModalPresentationStyle?

For UIViewController, we have UIModalTransitionStyle and UIModalPresentationStyle Question is what is the difference of them ?
Forrest's user avatar
  • 129k
1 vote
0 answers
473 views

Can a view inside a navigation controller (inside a popover) use a flip transition?

I'm not sure it's possible to do this. I have an iPad popover that hosts a navigation controller. I'd like to do an iPhone-standard flip-to-backside for something in that view, and have the contents ...
Ben Zotto's user avatar
  • 71.2k