Questions tagged [modal-view]
62 questions
0
votes
1 answer
Exit scene when clicking outside of modal view
Trying to exit the modal view to go back to the previous scene prior to selecting the modal view. Example attached below:
Originally I used some code from github to exit and return to the previous scene via button.
How can I select the greyed out…

luke
- 2,743
- 4
- 19
- 43
0
votes
0 answers
Presenting a iOS Keyboard and Modal TextView Simultaneously
So I haven't found a good answer on how to present the keyboard and a modal textview at the same time in Objective-C. One app I've seen that does this is Phonto in the app store. I'm trying to do the same thing. The cool thing about what they do is…

Parker Donat
- 1
- 3
0
votes
1 answer
Creating modal view from another modal view fails
In a view that was created modally, pressing a button causes the modal view to be dismissed and another modal view to load.
- (void)loadLanguageSelectionView {
[self dismissViewControllerAnimated:YES completion:nil];
UIViewController…

Sandah Aung
- 6,156
- 15
- 56
- 98
0
votes
1 answer
How can i share variables between views, with the same controller in AngularJS?
I have this controller...
app.controller('UploadController', ['$scope', 'Upload', '$timeout', function ($scope, Upload, $timeout) {
$scope.$watch('files', function () {
$scope.upload($scope.files);
});
$scope.upload = function…
0
votes
1 answer
ionic 1.0.0 model ion-modal-view does not work with Android back button
After I upgraded to 1.0.0, the modal view does not hide after pressing Android back button, instead the view which shows modal view goes back, this bug sucks.

poordeveloper
- 2,272
- 1
- 23
- 36
0
votes
3 answers
iPhone - Dismiss modal view by a UITabBarController
I've got into a very strange problem. I created my own UITabBarController to customize it and it works pretty well... except for the modal views. When I dismiss the modal view (present/dismiss from the UITabBarController) with an animation, it waits…

Nate
- 7,606
- 23
- 72
- 124
0
votes
2 answers
iOS TableView Reload after dismissing modal
In my app, I am listing core data entries in a tableview. I want to allow the user to edit records using a detail view presented modally as a form view. I am observing peculiar behavior when editing records.
The flow:
User loads tableview with…

BBruce
- 265
- 6
- 15
0
votes
1 answer
Google ranking - Modal views - google analytics events
I modified a site recently :
- I added many google analytics events, to better understand user behaviour.
- I added also two buttons on almost all the pages of the site. Those buttons show modal-views (I am using bootstrap) with questions about user…

minchiya
- 603
- 1
- 7
- 13
0
votes
2 answers
How to present a UIScrollView Modaly
I want to present a modal view with a UIscrollView as the content of the view. How would I do this?

Jab
- 26,853
- 21
- 75
- 114
0
votes
3 answers
tabBarController unLoad itself after call modalView
I have tabBarController with 6 views. As default tabBarController load first view, I need to load view #6 at my application start, so in my tabBarController I add to viewWillAppear [self.tabBarController setSelectedIndex:6];, ok. In my view #3 a…

Roman Simenok
- 530
- 7
- 22
0
votes
0 answers
Modal ViewController presenting another viewController won't animate immediately
Yes, I struggled a bit with that title...
Here's what my setup is meant to do:
I push a viewController (resultViewController) onto the navigation stack. Immediately (literally in the next line of code) I present another viewController to the…

T. Benjamin Larsen
- 6,373
- 4
- 22
- 32
0
votes
0 answers
(iOS) don't move up a modal view when the keyboard appears
I have a modal view (form sheet style) and i don't want it to move up when the keyboard appears because i have a popover inside that doesn't follow the modal view and looks really bad.
Basically i want to prevent moving up the modal view when the…

Chuy47
- 2,391
- 1
- 30
- 29
0
votes
1 answer
Modal View over UINavigationController - visibleViewController unrecognized selector sent to instance
I'm using a RevMob iOS SDK to show fullscreen ad. This SDK has a built-in pop-up view as a fullscreen modal view. The problem is that I'm using a UINavigationController, and issuing this:
"[RevMobFullscreenViewController visibleViewController]:…

lonlywolf
- 505
- 5
- 16
0
votes
3 answers
Kendo Mobile - Modal View not resizing to height of contents
I'm using Kendo Mobile and am testing a modal view out. My goal is to have the height of the modal view auto resize to the contents within it.
Here is what I currently have:

TAS
- 383
- 1
- 6
- 17
0
votes
1 answer
Are modal views in their own windows in iOS
I guess is a simple one to answer. When I call a view controller to be presented in a modal view, is it residing in its own window layer or is it just a view animated on top of the presenting view controller?

unspokenblabber
- 1,567
- 1
- 11
- 19