`presentModalViewController` is a `UIViewController` instance method that presents a modal view controller. This is deprecated as of iOS 6, superseded by `presentViewController`.
0
votes
1answer
15 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
15 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
6 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 ...
0
votes
0answers
40 views
Unable to present modal view controller from tableView delegate class
I have created a uiviewcontroller subclass to handle one of table view's delegates which i present to choose levels.
Step 1:
@interface LevelPickingTableViewDelegateViewController ...
-1
votes
1answer
37 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
33 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
31 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
28 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
16 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
11 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
59 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
67 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
69 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
26 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
36 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
55 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
72 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
84 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
64 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
75 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
93 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
96 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
42 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
52 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
41 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 ...
0
votes
0answers
62 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
58 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
107 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
182 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
132 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
122 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
38 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
249 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
253 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
100 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 ...
0
votes
1answer
126 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
39 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
387 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
72 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
38 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
161 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
133 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
59 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 ...
0
votes
0answers
45 views
App getting crashed when pushing a new view controller saying [uiviewcontrollername initWithCoder:]: unrecognized selector sent to instance 0x1fd8abf0
Hi all I am instatiating views from the storyboard with storyboard id and presenting them by presentModalViewController...all views are working good however with one of my uiviewcontroller, when ever ...
2
votes
1answer
215 views
Remove rounded corner for uiviewcontroller's view ipad
I have to remove round corner from UIView of UIViewcontroller. here is the image for that
I am presenting detail view with
detailView.modalPresentationStyle = UIModalPresentationFormSheet;
I ...
0
votes
2answers
142 views
PresentModalViewController not showing TabBar
I'm trying to go from one xib to another and I'm using TabBar.
When I move from xib to xib with PresentModalViewController I lose the TabBar.
When I use this way, it fail (like force close in ...
0
votes
0answers
13 views
How to load UINavigationController Views from a ModalView
I have a navigation controller with three UIViewControllers in it (A,B,C). All having push segue. I have one login UIViewController (Z) having segue with A as modal segue. I have three buttons (b1, ...
0
votes
0answers
56 views
presentModalViewController for 4.3 support warnings
I have a problem in my code for including presentModalViewController in iOS 4.3 and onwards versions.
I am using the following code for using presentModalViewController and presentViewController when ...
4
votes
1answer
167 views
No animation when modalPresentationStyle is set to UIModalPresentationCurrentContext
When I'm presenting my UIViewController with modalPresentationStyle of the parent UINavigationController set to UIModalPresentationCurrentContext, the UIViewController is not sliding in. There is no ...
0
votes
2answers
135 views
How can i add a navigation bar to presentModalViewController programmatically?
How can i add a navigation bar to presentModalViewController programmatically?
I know default navigation bar will be there in pushViewController..
hope your help...







