`presentModalViewController` is a `UIViewController` instance method that presents a modal view controller. This is deprecated as of iOS 6, superseded by `presentViewController`.

learn more… | top users | synonyms

0
votes
1answer
18 views

Modalview startup?

I realize this question might sound like a do-it question however I'm not sure how to do this. So my question is, how could I present a sequence of modalviews to show up at the launch of an app for ...
0
votes
0answers
3 views

Splitview not as rootViewController

Title is explicit. I'd like to know if it's possible to create a splitScreen and do not define it as RootViewController but simply call it as modal or pushview from another screen ? Another ...
0
votes
3answers
38 views

Prevent popovers from displaying over presented views

I am attempting to display a passcode screen that appears after X amount of inactivity. I use presentViewController:animated:completion: on the root view controller, and it works as expected, except ...
1
vote
2answers
60 views

iOS5,presentModalViewController presenting new view incorrectly

My app mainly supports iOS6+. When considering about iOS5, I added the following judgement. if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0) { self.modalPresentationStyle = ...
0
votes
0answers
18 views

UIViewController custom transition keyboard does not disappear

I'm presenting an UIViewController using a custom transition implementation: JWModalController *modal = [[JWModalController alloc] init]; CGRect originalFrame = [[self view] convertRect:[[modal ...
0
votes
1answer
39 views

Reload annotations in a map view

I am adding annotations as hardcoded values into the method - (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation CLLocationCoordinate2D coords1; ...
0
votes
1answer
25 views

modelviewcontroller in limbo state after swiching rootViewControllers

I think i found a bug in IOS SDK but i'm not sure how to overcome this issue without heavily modifying my code. The problem? If i present modal view controller, than the user moves the app to ...
-1
votes
1answer
24 views

Basic: ViewController Hierachy

In the first view controller A I call the "presentModalViewController" and then the B view controller is added to the screen now. The question is, is it true that the "A" view controller is still in ...
0
votes
1answer
68 views

iOS presentViewController is not working right

As part of my updating my apps to replace the deprecated presentModalViewController with presentViewController, I did some testing. What I found was disturbing. Whereas presentModalViewController ...
0
votes
1answer
32 views

presentModalViewController causes sigabrt inside UINavigationController in IOS 5.1 [duplicate]

Now, at the moment my application consists of a UINavigationController, which then passes (via a button) to a normal UIViewController, which then uses presentModalViewController to load another ...
0
votes
1answer
16 views

How can I trigger one UIViewController of the UITabBarController from another UIViewController?

I have a project that is a "tab-bar controller" app. The first button is essentially a Home screen. The second one displays a UITableView of content. The third button displays a different ...
-1
votes
1answer
72 views

DismissViewControllerAnimated not working with navigation

In my application i have used the following code to implement after dismissing the view i have pushed to new view,When i tried to implement the view is not dismissing instead it overlapping.Here my ...
0
votes
2answers
50 views

dismissViewControllerAnimated issue with navigation

This is my application code , which i used for selecting the image picker ,when image picks i want to dismiss the current view controller, Since its not dismissing from current view controller at the ...
0
votes
0answers
45 views

Presenting navigationcontroller modally causing transparent overlay?

I am using this control https://github.com/mikefrederick/MFSideMenu to present my navigationbar modal. I am getting the modal navigation view presented please see the screenshot here. What I have ...
0
votes
1answer
31 views

how to populate an array or any object from one view controller to another when we present the view using story board

I have implemented my iphone app using story board In my app *i need to present a view from one view to another view not the pus*h, I have created a screen in story board xib for the second view . ...
1
vote
1answer
24 views

PresentModalViewController with FullScreen to be used with Master_Detail View

I want to use splitviewController in iPad. But before that, I have to display a welcome screen. For that I tried using PresentMiodalViewController in viewDidAppear. (In viewDidLoad it is not getting ...
0
votes
0answers
16 views

presentModal a uiimagePicker in a NavigationController

I have overlaycontroller, which has UIimagePickerController object as a property On pressing 3rd tab of tabbar.... I want to presentModal a navigation controller, who's rootviewcontroller should be ...
0
votes
1answer
171 views

Simple view controller switch causes: Attempt to present while a presentation is in progress

I am learning how to handle view controller hierarchies using the storyboard. I have 2 ViewControllers: the root of type cwViewController (what I understand is 'self' below) and a second of type ...
0
votes
2answers
216 views

iOS Application tried to present modally an active controller

I am trying to present a view controller modally from another view controller that is the second view inside UINavigationController. But it keep giving error and crashing. Application tried to ...
0
votes
1answer
145 views

Unable to remove warning about deprecated method in iOS 6

I am using the ZBar SDK in my application, which I am able to run just fine. However, I am getting the following warning that I can't figure out: "presentModalViewController:animated" is deprecated. ...
0
votes
0answers
35 views

multiple presentingViewController through SLComposeViewController gives no output

I am trying to update text on twitter as well as facebook. i took 2 SLComposeViewController - one for facebook and one for twitter. [self presentViewController:tweet animated:YES completion:Nil]; ...
0
votes
0answers
44 views

orientation issue when view controller is presented modally over a view controller presented as modal

I have viewcontroller which is presented modally, i.e say vc VC.modalPresentationStyle = UIModalPresentationFormSheet; [self presentViewController:VC animated:YES completion:nil]; And I have a ...
0
votes
3answers
76 views

Presenting a modal controller without knowing the current view controller?

Is there a way to present a view controller modally without knowing what the visible view controller view is? Basically sort of like you would show an alert view at any points in time. I would like ...
1
vote
1answer
95 views

ipad modalviewcontroller when dismissed does not go to the viewdidappear of the mainviewcontroller

Hi I have a modalview controller that pops up on the main menu after the user successfully logs in. This is used for additional roles that needs to be saved on the userdefaults. The modal gets ...
-1
votes
1answer
118 views

Why is modal presentation form sheet not being displayed as expected?

I'm just trying a really simple example here as I start to delve into iOS development for ipad. I'm creating a split view and immediately trying to present a modal form sheet. Should be really basic. ...
0
votes
1answer
108 views

Create and Present modal view controller programatically

I am trying to programatically declare a modal view controller from a view controller launched using storyboard. I would expect to see a blank view coming up but instead I only see the webview from ...
0
votes
0answers
103 views

ECSlidingViewController's Subview controller to present a new controller

This is my situation. When I was using ECSlidingViewController, I want the sub-view controller on the right (right sub-view) to present another view controller. RecorderDistrictPickerViewController ...
1
vote
2answers
132 views

to use [self presentModalViewController: animated:] and black screen

I create one program that show list of book from url in tableview (any book has many images) I want when to click any cell to go in next page (next page is UIScroll that show images) and show images ...
0
votes
1answer
157 views

Presenting a view controller of custom size with navigation

I want to present a view controller of custom size say (500,500). I try to do that with the below code, it works fine with a semi transparent light gray background if I present the view controller ...
2
votes
1answer
52 views

UIModalViewController Hidden behind a UIViewController

I am working with a sliding menu, like you would see in the Facebook or Path app. In the rear menu I am wanting to allow the user to add an image by using the camera or photo library. The issue I am ...
0
votes
0answers
56 views

Presenting UIViewController and reference count

Sorry for this dumb question. But I still can't understand this __weak stuff and retain cycles. I have a view controller which instantiates another one from storyboard, invokes a method on it and then ...
0
votes
1answer
49 views

postNotificationName si not being called?

Hello everyone postNotificationName is not being called in the following situation: I have a viewcontrollerA when i click on a button the user must login. So I do a presentmodal for the login. And ...
1
vote
0answers
94 views

Modal ViewController with custom transition = wrong animation

In my application it's possible to open a video from pretty much everywhere. The video player a UIViewController subclass which contains an MPMoviePlayerController and is presented on the ...
0
votes
2answers
72 views

UIViewController dismiss few controllers (iOS 4.3 and higher)

I have hierarchy of UIViewControllers that have been presented using presentModalViewController methods. I have singleton that grab all presented view controllers to an array. For example I ...
0
votes
2answers
135 views

How to presentModalViewController in applicationDidFinishLaunching?

Here is my situation: I have a TaskListViewController(UITableView) which need Internet. So I used AFNetworking to do some login work(with demo account and password) before the TaskList is showed. Now ...
1
vote
2answers
282 views

How to present and dismiss modal view from appdelegate?

I am in the appdelegate of my application, in didFinishLaunchingWithOptions, and I'd like to load a modal navigation controller over a tab bar controller (I dont' have a class "navigation controller" ...
0
votes
1answer
229 views

Remove rounded corner of modal uinavigationcontroller

I'm presenting a UINavigationController modally. _navigationController.modalPresentationStyle = UIModalPresentationFormSheet; I want to show the modal controller with rounded corners. I tried this: ...
0
votes
2answers
194 views

Refreshing data in a UIViewController after dismissing its presented modal view controller via delegate

I have the delegate working as the data is being passed from the modal to the presenting view controller. But the presenting view controller isn't showing the data it receives from the modal. I ...
0
votes
1answer
44 views

How to pass reference to object to a modally presented view controller that is contained inside a navigation controller?

I'm having an issue passing a reference to a my data object. The presenting view controller has a reference to the data object. The modal view controller is hooked up to a navigation controller, and ...
0
votes
2answers
378 views

Modal View Controller loading with black background

I have seen a few of these issues by searching but mostly relating to storyboards. I am simply pragmatically creating a modal view controller. It is actually for the use with reachability, once the ...
2
votes
2answers
397 views

Present Modal View Controller from inside Popover View

So in my universal app I have a section where a person can look at an existing list of notes from our system (retrieved through a simple web service) and then also create a new note if they want. So ...
0
votes
2answers
125 views

Status bar influence in presentViewController:animated:completion

I'm having a problem that I don't really know why it is caused. In my app I have a main view controller whose frame is (0, 0, 320, 480) (iphone4). In this controller I just present another view ...
1
vote
1answer
194 views

How can I present a ModalViewController from a UIActivity item picked from UIActivity View Controller?

I am working on an app that presents some data in a detailViewController. I have a rightBarButton in the navbar that presents a UIActivityViewController that is filled with my own UIActivity ...
0
votes
0answers
45 views

ModalView frame origin issue iOS6

I am using following code for opening ModalView MYViewController *myVC = [[MYViewController alloc] init]; UINavigationController *navigationController = [[UINavigationController alloc] ...
2
votes
3answers
614 views

Application tried to present modally an active controller : UIImagePickerController

I'm struggle at this for 2 days and believe that this is the moment I should call for help. After I search SOF for a while, none of any answer could solve my problem. Here are my application ... In ...
0
votes
1answer
80 views

UIImagePickerController strange status bar

Does anyone know what is this strange white bar on the top of a UIImagePickerController? I'm presenting it from my EditProfileViewController, when it appears modally it comes with that strange white ...
0
votes
0answers
47 views

ScrollView within subview within a view

I Have a UIView and when I press a button I want to add a Subview (I just want to add s maller UIView that has a UIScrollview inside it with paging control with a black faded backgound) and I found ...
0
votes
4answers
228 views

How to add an UINavigationController to an UIViewController presented as Modal

I have an alternative flow in my app. This flow starts in my firstViewController, then in this view a call my secondViewController like this: - (IBAction)PressButton:(id)sender { ...
0
votes
1answer
233 views

Using presentViewController (or other techniques) to show a view but not in full screen mode?

According to the documentation, presentViewController can only work in full screen mode for iPhone and iPod. However, I need a similar functionality, which can show some portion of the view from the ...
0
votes
0answers
64 views

Presenting a modalViewController with XIB files, but the application crashes

I tried to present a modalViewController in my View, but it crashes everytime. I tried a lot to do a new project and try it again but everytime the application crashes and the error "Thread 1: signal ...

1 2 3 4 5 8