I'm trying to create a transparent modal View on top of my navigation controller. Does anyone know if this is possible?
|
feedback
|
|
A modal view will cover the view it is pushed on top of as well as the navigation bar for your navigation controller. However, if you use the -presentModalViewController:animated: approach, then once the animation finishes the view just covered will actually disappear, which makes any transparency of your modal view pointless. (You can verify this by implementing the -viewWillDisappear: and -viewDidDisappear: methods in your root view controller). You can add the modal view directly to the view hierarchy like so:
Adding the modalView as a subview to the root view like this will not actually cover the navigation bar, but it will cover the entire view below it. I tried playing around with the origin of the frame used to init the modalView, but negative values cause it to not display. The best method that I found to cover the entire screen besides the status bar is to add the modalView as a subview of the window itself:
| |||||||||
feedback
|
|
I accomplish this most easily by setting up an "OverlayViewController" that sits above all other subviews of my window or root view. Set this up in your app delegate or root view controller, and make OverlayViewController a singleton so that it can be accessed from anywhere in your code or view controller hierarchy. You can then call methods to show modal views, show activity indicators, etc, whenever you need to, and they can potentially cover any tab bars or navigation controllers. Sample code for root view controller:
Sample code you might use to display your modal view:
I haven't actually used | |||||
feedback
|
|
I had this same problem and in order to The solution is to add the modal view with addSubview: and animate the change in the view hierarchy with UIView’s animateWithDuration:delay:options:animations:completion: I added a property and 2 methods to a subclass of UIViewController (FRRViewController) that includes other functionalities. I will be publishing the whole stuff on gitHub soon, but until then you can see the relevant code below. For more info, you can check my blog: How to display a transparent modal view controller.
| |||
|
feedback
|
|
This post about displaying a semi-transparent "Loading..." view might give a few pointers on how to proceed. | |||
|
feedback
|
|
Yeah, you have to add the view manually, and if you want to slide in from the bottom or whatever you have to do the animation yourself too. I wrote a class to do this, and a semi-modal datepicker using that class as an example. You can find documentation in this blog post, the code is on github | |||
|
feedback
|
|
Here's what I did to solve the problem - Google the details but this approach worked very well for me:
The effect is:
I tried animating in my own overlay view but it didn't work very well. I got a crash with no indication as to what has crashed. Rather than chase this down I did the bg view & Works really well. Code in the modal view - I think you can figure out the rest, namely setting the property modalView.bgImage...
| |||
|
feedback
|
|
I've been researching this same issue for the past week. I tried all the various answers and examples found in Google and here on StackOverflow. None of them worked that well. Being new to iOS programming, I wasn't aware of something called | |||
|
feedback
|
|
I finally accomplished this, for a navigation or tab bar interface, by combining an overlay view controller (see: pix0r's answer) that's hidden / un-hidden before hiding or showing a view controller based on this very handy blog post: link text Concerning the view controller, the tip is to make it's background view the 'clear color', then the semi-transparent overlay view is visible and whatever views are added as subviews in the view controller are in front and most importantly opaque. | ||||
|
feedback
|
|
I got this idea from https://gist.github.com/1279713 Prepare: In the modal view xib (or scene using storyboard), I setup the full-screen background UIImageView (hook it with the .h file and give it a property "backgroundImageView") with 0.3 alpha. And I set the view (UIView) background color as plain black. Idea: Then in "viewDidLoad" of the modal view controller I capture the screenshot from the original status and set that image to the background UIImageView. Set the initial Y point to -480 and let it slide to Y point 0 using 0.4-second duration with EaseInOut animation option. When we dismiss the view controller, just do the reverse thing. Code for the Modal View Controller Class .h file:
.m file:
In viewDidLoad, simply call:
In anywhere we dismiss the modal view controller, we call:
Please note that this will ALWAYS animate the background image. So if this modal view controller transition style (or the segue transition style) is not set to "Cover Vertical", you may not need to call the animation methods. | |||||||
feedback
|
|
You can achieve transparent/semi-transparent modal view effect by overlaying a transparent/semi-transparent button on both the view and the navigation bar. You can access the navigation bar through the navigationBar property of the UINavigationController. I found that UIButton unlike UILabel will trap mouse events - hence giving the correct modal behavior. | |||
|
feedback
|