Questions tagged [uimodaltransitionstyle]

The UIModalTransitionStlye is a enum created by Apple to set the transition style of the ViewController when "modally" presented.

The UIModalTransitionStlye is a enum created by Apple to set the transition style of the ViewController when modally presented.

46 questions
0
votes
2 answers

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 NSUserDefaults, but I am having trouble getting the view…
Kevin_TA
  • 4,575
  • 13
  • 48
  • 77
0
votes
1 answer

Animating the transition of a subview in Cocoa Touch

I have a view with a subview in it. The subview will contain other views. When the user clicks on the menu on the left side, the contents of the subview will be switched: the current view will be removed and a new one will be added. I want to…
0
votes
2 answers

how to switch view with a part of screen

I have a navigation bar on the top and a tab bar on the bottom. Then I place a info light button on the navigation bar. My task is press the info button to switch the middle area to another view and keep the navigation bar and the tab bar standing…
user844656
  • 33
  • 4
0
votes
2 answers

Swift: using UIModalTransitionStyle.flipHorizontal shows a black view

I'm trying to implement UIModalTransitionStyle.flipHorizontal and it works but it shows just a black view. here is my code: @IBAction func loadNextView(_ sender:UIButton){ let nextVC = NextViewController() nextVC.modalTransitionStyle =…
user2924482
  • 8,380
  • 23
  • 89
  • 173
0
votes
0 answers

Presenting ViewController over current context gets stuck

I'm trying to present a viewcontroller modally over current context when I press a button ("Touch Down") and when I release that button ("Touch Up Inside") I want the viewcontroller to be dismissed. This is my code: (buttonPressed is the "Touch…
0
votes
2 answers

presentViewController shows black sceen while UIModalTransitionStyleFlipHorizontal objective c

I'm facing issue with the UIModalTransitionStyleFlipHorizontal, Which gives black screen at background while transition and shows the actual screen. After first time it shows the last view which added as rootview. What actually I need to achieve…
0
votes
1 answer

Modal transition shows view behind while transitioning

I have a UITableView controller with a plus button in the navigation bar. When + is pressed, a modal transition is triggered and a UIView is now presented. Problem is while the modal transtion is happening, I can see the tableView behind until the…
MortalMan
  • 2,582
  • 3
  • 23
  • 47
0
votes
1 answer

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 ?? If don't want to use push, because I want an…
0
votes
2 answers

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] initWithNibName:nil…
Seb OH
  • 785
  • 1
  • 6
  • 15
0
votes
1 answer

Modal/menu sliding in from the top

I'd like to create a menu sliding from the top with a list of options. More specifically, when the user clicks the navigation bar, I would like that a kind of modal view will slide from the status bar to the bottom. The modal will be a…
Luca Torella
  • 7,974
  • 4
  • 38
  • 48
0
votes
1 answer

How to fix the UIModalTransitionstyle issue on ios6?

I am using the following code for UIModalTransitionStyle view in my application when i click the button InfoViewController *infoViewController = [[InfoViewController alloc]initWithNibName:@"InfoViewController"…
Ben10
  • 3,221
  • 2
  • 34
  • 61
0
votes
1 answer

UIModalTransitionStylePartialCurl acting strange with subclassed elements in iOS 5

I have a UIModalTransitionStylePartialCurl which is acting funky. My views UILabel and UIButton animate as if the labels frame is being changed all the time. In iOS 4 or 6 it works statically. I've made a video of the bug on youtube. I found an…
squarefrog
  • 4,750
  • 4
  • 35
  • 64
0
votes
1 answer

Go back with UIModalTransitionStyle

That's what I'm trying to do: I have a navigationController based app and many different views. Let's say that on the third view, I want to view the view 4 using UIModalTransitionStyleCoverVertical. That I have done it using this…
0
votes
1 answer

iPad Animation of modal view controller from table cell

So I'm creating an iPad app that displays images in a UITableView and when when a row/image is selected it pushes another view controller that plays a video in full screen. This is all working correctly but I want to animate the transition from the…
Sean
  • 335
  • 4
  • 16
0
votes
1 answer

TransitionStylePartialCurl Not working with ios 4.3

UIModalTransitionStylePartialCurl is not working with ios 4.3, but when i have exactly the same code,it works with ios5. ViewController *infoView = [[[ViewController alloc] init] autorelease]; [infoView…
Vacca
  • 1,219
  • 16
  • 26