Top "Modalviewcontroller" questions

A modal view controller is a mechanism for managing a modal view, i.e. a view that assumes logical control of the user interface until the modal view is dismissed.

Modal view controller won't dismiss itself

What I'm doing: In my app, I'm presenting a modal view controller (containing app settings) using the following code: optionsViewController.…

iphone objective-c modalviewcontroller ios5
setValue:forUndefinedKey:]:

FinalViewWithSending *newView = [[FinalViewWithSending alloc]initWithNibName:@"FinalViewWithSending" bundle:nil]; newView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; [self presentModalViewController:newView animated:YES]; //it crashes here with …

xcode modalviewcontroller viewcontroller sigabrt
Dismiss modal view form sheet controller on outside tap

I am presenting a modal view controller as a form sheet and dismissing it when the cancel button, which is …

objective-c xcode uinavigationcontroller modalviewcontroller
How to identify that an UIViewController is presented

I have created an UIViewController sub class which can either be pushed in a navigation stack of a UINavigationController or …

iphone ios objective-c uiviewcontroller modalviewcontroller
How to dismiss a modal VC with fade out animation?

I am using the following code in my presenting VC to fade in the child modal VC, and this works …

ios animation modalviewcontroller fadeout dismiss
dismissModalViewController AND pass data back

I have two view controllers, firstViewController and secondViewController. I am using this code to switch to my secondViewController (I am …

iphone ios uiviewcontroller modalviewcontroller
Presenting a Modal View Controller hides the Navigation Bar

I have a navigation based app with a navigation bar, but there are a few instances where instead of pushing …

objective-c ios cocoa-touch uinavigationbar modalviewcontroller
Application tried to present modally an active controller ios

I was trying to set the ViewController with a parent view controller before it shows show that it can provide …

ios objective-c segue modalviewcontroller viewcontroller
iPhone Modal View Smaller that the screen

I'm trying to do something that shouldn't be that complicated, but I can't figure it out. I have a UIViewController …

iphone modal-dialog modalviewcontroller
How to dismiss a view controller opened with presentModalViewController:

I presented a view controller using presentModalViewController:, now how to close/dismiss it?

ios objective-c uiviewcontroller modalviewcontroller