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
1
vote
2 answers

iOS: Using modal pageFlip makes strange cell animation in UITableViewController

I wanted to show a Settings view, so I figured I could use the pageCurl modal style. I have a UIViewController that I am presenting from: Settings *settings = [[[Settings alloc] initWithStyle:UITableViewStyleGrouped]…
Nic Hubbard
  • 41,587
  • 63
  • 251
  • 412
1
vote
0 answers

Issues with Custom Tab Bar when using UIModalTransitionStylePartialCurl

I've added a custom tab bar which works well however when i present another view modally using UIModalTransitionStylePartialCurl the image for the tab bar continues on. Image below: I've added the tabBar image like this: if([[[UIDevice…
VDub19
  • 131
  • 1
  • 1
  • 4
1
vote
1 answer

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 flipped in. Heres the code: …
1
vote
1 answer

Change the style of transition from view to view

i currently use that method to transition between view1 to view2: -(IBAction)goToView2{ view2.modalTransitionStyle=UIModalTransitionStyleCoverVertical; [self presentModalViewController:view2 animated:YES]; } This make the view2 cover view1…
Malloc
  • 15,434
  • 34
  • 105
  • 192
1
vote
1 answer

Present and Dismiss with different modal styles

I want to be able to present a viewController with crossDissolve but dismiss it with the traditional top to bottom dismissal. Is there a way to change the modalTransitionStyle once the viewController has opened? Here is how I am currently…
user6520705
  • 705
  • 3
  • 11
  • 38
1
vote
0 answers

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 of the popover flip horizontally to reveal a…
Ben Zotto
  • 70,108
  • 23
  • 141
  • 204
1
vote
1 answer

Custom UIModalPresentationStyle.custom: Why does presentationController(forPresented get called but not animationController(forPresented?

I'm using UIModalPresentationStyle.custom. In my UIViewControllerTransitioningDelegate why does this method get called: func presentationController(forPresented presented: UIViewController, presenting: UIViewController?, source: UIViewController) ->…
1
vote
0 answers

Blurred modal UITableViewController transparent only during transition?

In iOS9 I am presenting a UITableViewController modally over current context and at viewWillAppear I am blurring it like this: self.tableView.backgroundColor = [UIColor clearColor]; UIBlurEffect *blurEffect = [UIBlurEffect…
Fabrizio Prosperi
  • 1,398
  • 4
  • 18
  • 32
1
vote
1 answer

Dissolve transition reverts UI element frame changes

I'm using a modal transition to shift from one XIB to another, and I've got it all working except for one thing: at the moment that the transition begins, all the movement animations I've done on the previous view are reverted. Here's the method I'm…
Nerrolken
  • 1,975
  • 3
  • 24
  • 53
1
vote
0 answers

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 scratch. I used this tutorial…
1
vote
1 answer

presentViewController with multiple view controllers issue

I have view controllers A, B, C, D. Current view controller is A. I need to present D from A. And then when I dismiss D I should see C. When I dismiss C, I should see B. It's easy to implement with navigation controller stack, but I don't know if…
Paul T.
  • 4,938
  • 7
  • 45
  • 93
1
vote
1 answer

How to make transition from RootController to DetailController UITableview iphone sdk

I have a UITableView with some Cells. I don't use NavigationController, so I'd like to use UIModalTransition to Switch from RootController, my TableViewcell, to my DetailView, but want to add a Navigation bar to attribute some actions, like…
Tom John
  • 99
  • 1
  • 7
1
vote
1 answer

How can i implement a UIModalTransitionStylePartialCurl in storyboard with Xcode 4.3?

I try this: ViewController.h @class SecondView; @interface Introduccion : UIViewController{ SecondView *second; } -(IBAction)AnimatecreditsPage:(id)sender; @end ViewController.m -(IBAction)AnimatecreditsPage:(id)sender{ second =…
1
vote
0 answers

How to change UITabBarController's modalTransitionStyle in iOS?

I used UITabBarController in my apps. I want to use modalTransitionStyle for UITabBarController. I have three Views in UITabBarController with following codes. self.tabBarController.viewControllers = [NSArray…
Fire Fist
  • 7,032
  • 12
  • 63
  • 109
0
votes
2 answers

Display two modal view controllers one after another with different transition styles between them

I'm presenting a modalViewController with UIModalTransitionStyleCoverVertical and then, when the user selects a row of this modalView, I present another modalView as follows: - (void)tableView:(UITableView *)tableView…
Samui
  • 1,384
  • 3
  • 14
  • 28