The UIModalTransitionStlye is a enum created by Apple to set the transition style of the ViewController when "modally" presented.
7
votes
2answers
2k views
UIModalPresentationCurrentContext with Transition?
I am trying to modal present a view controller like below:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard ...
6
votes
2answers
597 views
UIModalTransitionStylePartialCurl causing UIButton text to animate
I've got a UIView that gets used in a modal view using the UIModalTransitionStylePartialCurl transition style when it appears. This UIView includes a UIButton. The odd thing is that whenever the view ...
4
votes
2answers
850 views
UIModalTransitionStyleFlipHorizontal animation duration?
What is the default value of (NSTimeInterval)duration for UIModalTransitionStyleFlipHorizontal, which is related to -[UIViewController presentModalViewController:animated:]?
2
votes
1answer
572 views
Is there a way to adjust a UIModalTransitionStyle speed/duration?
I want to use UIModalTransitionStyleFlipHorizontal, but just have it happen a bit quicker.
Is this possible?
2
votes
1answer
376 views
Status Bar Background during UIModalTransitionStyleFlipHorizontal
Attached are a few screenshots from my app in the midst of UIModalTransitionStyleFlipHorizontal
I have changed the statusbarstyle to Black in info.plist and I have set the background color or ...
2
votes
1answer
839 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 ...
1
vote
1answer
2k views
What is difference between UIModalTransitionStyle and UIModalPresentationStyle?
For UIViewController, we have UIModalTransitionStyle and UIModalPresentationStyle
Question is what is the difference of them ?
1
vote
2answers
6k 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
...
1
vote
4answers
459 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 ...
1
vote
1answer
731 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 ...
1
vote
1answer
375 views
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 ...
1
vote
1answer
79 views
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 ...
1
vote
1answer
137 views
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
...
1
vote
2answers
335 views
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] ...
1
vote
0answers
181 views
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 ...