up vote 16 down vote favorite
12
share [g+] share [fb]

I am displaying a model view with

[self presentModalViewController:controller animated:YES];

When the view moves up the screen it is transparent as per the setting in the xib file it is created from, but once it fills the screen it goes opaque.

Is there anyway of keeping the view transparent?

I suspect that the view it is being placed over is not being rendered rather then that the modal view is becoming opaque.

link|improve this question

80% accept rate
feedback

6 Answers

up vote 19 down vote accepted

Your view is still transparent, but once your modal controller is at the top of the stack, the view behind it is hidden (as is the case with any top-most view controller). The solution is to manually animate a view yourself; then the behind-viewController won't be hidden (since you won't have 'left' it).

link|improve this answer
Thanks, that confirms what I suspected. – Darryl Braaten Feb 26 '09 at 0:26
I've filed a bug report with Apple about this issue. Open Radar: openradar.appspot.com/radar?id=1062402 – Theory Jan 29 '11 at 22:05
feedback

For those who want to see some code, here's what I added to my transparent view's controller:

// Add this view to superview, and slide it in from the bottom
- (void)presentWithSuperview:(UIView *)superview {
    // Set initial location at bottom of superview
    CGRect frame = self.view.frame;
    frame.origin = CGPointMake(0.0, superview.bounds.size.height);
    self.view.frame = frame;
    [superview addSubview:self.view];            

    // Animate to new location
    [UIView beginAnimations:@"presentWithSuperview" context:nil];
    frame.origin = CGPointZero;
    self.view.frame = frame;
    [UIView commitAnimations];
}

// Method called when removeFromSuperviewWithAnimation's animation completes
- (void)animationDidStop:(NSString *)animationID
                finished:(NSNumber *)finished
                 context:(void *)context {
    if ([animationID isEqualToString:@"removeFromSuperviewWithAnimation"]) {
        [self.view removeFromSuperview];
    }
}

// Slide this view to bottom of superview, then remove from superview
- (void)removeFromSuperviewWithAnimation {
    [UIView beginAnimations:@"removeFromSuperviewWithAnimation" context:nil];

    // Set delegate and selector to remove from superview when animation completes
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)];

    // Move this view to bottom of superview
    CGRect frame = self.view.frame;
    frame.origin = CGPointMake(0.0, self.view.superview.bounds.size.height);
    self.view.frame = frame;

    [UIView commitAnimations];    
}
link|improve this answer
The only problem I have with this solution is memory management. For example: TestViewController *testView = [[TestViewController alloc]initWithNibName:@"TestView" bundle:nil]; [testView presentWithSuperview:self.navigationController.view]; Will work fine, however if you attempt to release or autorelease the View, any calls to methods within that view, will result in bad access exceptions – Mick Walker Apr 5 '10 at 15:07
Are you sure? I think the view will be retained by [superview addSubview:], so you should be able to release it. – Kristopher Johnson Apr 5 '10 at 17:36
If you call presentWithSuperview then release testView it crashes. It also displays displays "under" any NavigationController toolbars etc. – Ryan Booker May 14 '10 at 1:31
Thanks for the code..... – Sijo Feb 9 '11 at 7:28
feedback

After iOS 3.2 there is a method to do this without any "tricks" -- see the documentation for the modalPresentationStyle property.

You have a rootViewController which will present the viewController. So here's the code to success:

viewController.view.backgroundColor = [UIColor clearColor];
rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
[rootViewController presentModalViewController:viewController animated:YES];

With this method the viewController's background will be transparent and the underlying rootViewController will be visible.

link|improve this answer
Didn't work for me. Please consider adding more explanation, your way seems more clean and future proof. – Guillaume Apr 12 '11 at 9:13
You should check the documentation and check the modalPresentationStyle property. Please do it and answer here. Thank you! – Infinite Possibilities Apr 27 '11 at 10:25
Hi.. +1 from my side bcoz it works fine in iOS 4 and iPad. but how it will work in iPhone 3.0. Thanks – Mitesh Khatri May 3 '11 at 8:38
Thank you! On iPhone 3.0 it will not work, because the documentation says that it is working from iOS 3.2 and iOS 3.2 as I know it was for iPad 1 first release. – Infinite Possibilities May 4 '11 at 19:52
If you can manage to work with your configuration, please share your experience with us. Thank you! – Infinite Possibilities Sep 15 '11 at 19:18
show 4 more comments
feedback

There is another option: before showing the modal controller, capture a screenshot of the whole window. Insert the captured image into an UIImageView and add the image view to the controller's view you're about to show. Then send to back. Insert another view above the image view (background black, alpha 0.7). Show your modal controller and it looks like it was transparent. Just tried it on iPhone 4 running iOS 4.3.1. Like charm.

link|improve this answer
good one, i implement this it was great for me.add my code which follow this concept. – Ishu Jul 15 '11 at 7:23
works, but will bring in new problems when it comes to rotation of your views... – samsam Aug 10 '11 at 14:08
Nobody said it's going to be easy! :-) – Krumelur Aug 11 '11 at 13:30
feedback

see this code , in my condition i am having view on same viewController.so make a new viewcontroller for holding UIView. make that view transparent by setting it's alpha property. then on a button click i write this code. it looks good.

UIGraphicsBeginImageContext(objAppDelegate.window.frame.size);
    [objAppDelegate.window.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();



    UIViewController *controllerForBlackTransparentView=[[[UIViewController alloc] init] autorelease];
    [controllerForBlackTransparentView setView:viewForProfanity];

    UIImageView *imageForBackgroundView=[[UIImageView alloc] initWithFrame:CGRectMake(0, -20, 320, 480)];
    [imageForBackgroundView setImage:viewImage];

    [viewForProfanity insertSubview:imageForBackgroundView atIndex:0];

    [self.navigationController presentModalViewController:controllerForBlackTransparentView animated:YES];

And it shows what i want. hope it help some one.

link|improve this answer
feedback

Here's a category I've created that will solve the problem.

    //
    //  UIViewController+Alerts.h
    //

    #import <UIKit/UIKit.h>

    @interface UIViewController (Alerts)

    - (void)presentAlertViewController:(UIViewController *)alertViewController animated:(BOOL)animated;
    - (void)dismissAlertViewControllerAnimated:(BOOL)animated;

    @end


    //
    //  UIViewController+Alerts.m
    //

    #import "UIViewController+Alerts.h"

    @implementation UIViewController (Alerts)

    - (void)presentAlertViewController:(UIViewController *)alertViewController animated:(BOOL)animated
    {
            // Setup frame of alert view we're about to display to just off the bottom of the view
            [alertViewController.view setFrame:CGRectMake(0, self.view.frame.size.height, alertViewController.view.frame.size.width, alertViewController.view.frame.size.height)];

            // Tag this view so we can find it again later to dismiss
            alertViewController.view.tag = 253;

            // Add new view to our view stack
            [self.view addSubview:alertViewController.view];

            // animate into position
            [UIView animateWithDuration:(animated ? 0.5 : 0.0) animations:^{
                    [alertViewController.view setFrame:CGRectMake(0, (self.view.frame.size.height - alertViewController.view.frame.size.height) / 2, alertViewController.view.frame.size.width, alertViewController.view.frame.size.height)];
            }];      
    }

    - (void)dismissAlertViewControllerAnimated:(BOOL)animated
    {
            UIView *alertView = nil;

            // find our tagged view
            for (UIView *tempView in self.view.subviews)
            {
                    if (tempView.tag == 253)
                    {
                            alertView = tempView;
                            break;
                    }
            }

            if (alertView)
            {
                    // clear tag
                    alertView.tag = 0;

                    // animate out of position
                    [UIView animateWithDuration:(animated ? 0.5 : 0.0) animations:^{
                            [alertView setFrame:CGRectMake(0, self.view.frame.size.height, alertView.frame.size.width, alertView.frame.size.height)];
                    }];      
            }
    }

    @end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.