up vote 8 down vote favorite
11
share [g+] share [fb]

How to create that black/gray modal popup kind of view that many apps use, when some long pending operation is in progress?

Like when using location based services, loading a webpage, the screen goes dim and there is a modal view showing a spinning icon "Please wait..."

I've posted a screenshot of what I mean here... http://www.flickr.com/photos/mugunthkumar/3503268688/

link|improve this question
feedback

5 Answers

up vote 7 down vote accepted

If you want to avoid undocumented api you can also take a look at MBProgressHUD. It's similar to UIProgressHUD and even has some additional features.

link|improve this answer
URL gives a 404? – Jane Sales May 24 '10 at 11:14
2  
Sorry for that. Get it at github.com/matej/MBProgressHUD – Matej Bukovinski May 24 '10 at 16:34
feedback

This is actually the undocumented (in 2.2.1 anyway) UIProgressHUD. Create one like this:

In your .h:

@interface UIProgressHUD : NSObject 
- (UIProgressHUD *) initWithWindow: (UIView*)aWindow; 
- (void) show: (BOOL)aShow; 
- (void) setText: (NSString*)aText; 
@end

In your .m:

- (void) killHUD: (id)aHUD 
{ 
[aHUD show:NO]; 
[aHUD release]; 
} 

- (void) presentSheet 
{ 
id HUD = [[UIProgressHUD alloc] initWithWindow:[contentView superview]]; 
[HUD setText:@"Doing something slow. Please wait."]; 
[HUD show:YES]; 
[self performSelector:@selector(killHUD:) withObject:HUD afterDelay:5.0]; 
}
link|improve this answer
3  
Can this be used and submitted to the App Store? – John Fricker May 5 '09 at 5:27
3  
Yes, this is not linking to private API. We’ve done something similar with buttons on the UIAlertView, went through review with no problems. – zoul May 5 '09 at 8:30
I didn't know that - thanks zoul. – Jane Sales May 5 '09 at 9:58
1  
Note that the situation has changes since my last comment, nowadays you probably won’t get into the App Store with this. – zoul Jan 18 '11 at 8:48
3  
There are two ways of using private API. The first one is linking to private frameworks, the second one is using undocumented calls from the public frameworks. The latter (which we are doing here) used to go through reviews fine, but since some months ago Apple now rejects it, too. In other words, this was always a private API, not described in the official docs and therefore not guaranteed to work, stay or get you through the review. – zoul Jan 19 '11 at 6:17
show 1 more comment
feedback

If you add a UIView as a subview of the main window it will cover the entire UI. Make it partially transparent and partially translucent and it will look like a popup.

This example shows how to fade the Default.png splash screen, starting with that it's pretty straightforward to add a couple methods to your application delegate (that has a pointer to the main window) to present and dismiss the progress view.

link|improve this answer
Hi duncanwilcox, I wanted this also... fading default.png screen... :) Thanks... You seems to answer questions which I still have not asked... :D – Mugunth Kumar May 6 '09 at 2:29
feedback

Take a look at the Wordpress iPhone app (http://iphone.wordpress.org/) for an example of how to do this without using any undocumented API's.

link|improve this answer
feedback

I use LoadingHUDView for this purpose, and it works always.

get LoadingHUDView.m and LoadingHUDView.h and do the following in your base class (or whatever)

#pragma mark ActivityIndicator Methods

-(void) showModalActivityIndicator:(NSString *)message 
{
        loadingView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]retain];//  origional
        //loadingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; //testing
        loadingView.backgroundColor = [UIColor grayColor]; //[UIColor colorWithRed:1 green:1 blue:1 alpha:0.3];
        LoadingHUDView *loadHud = [[LoadingHUDView alloc] initWithTitle:message];
        loadHud.center = CGPointMake(160, 290);
        [loadingView addSubview:loadHud];
        [loadHud startAnimating];
        [loadHud release];
        [loadingView setAlpha:0.0];
          [self.tableView addSubview:loadingView];
        [UIView beginAnimations:@"fadeOutSync" context:NULL];
        [UIView setAnimationDelegate:self];
        [UIView setAnimationDuration:0.5];
        [loadingView setAlpha:0.5];
        [UIView commitAnimations];
}

-(void) hideModalActivityIndicator {
    if (loadingView) {
    [UIView beginAnimations:@"fadeOutSync" context:NULL];
    [UIView setAnimationDidStopSelector:@selector (removeTranparentView) ];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDuration:0.5];
    [loadingView setAlpha:0];
    [UIView commitAnimations];
        }
}

-(void)removeTranparentView
{
    [loadingView removeFromSuperview];
    [loadingView release];
    loadingView = nil;
}

HOPE THIS HELPS. thank you

link|improve this answer
You may use it as : [self showModalActivityIndicator:@"Logging you in..."]; – freeSoul_expedition Nov 28 '11 at 12:17
feedback

Your Answer

 
or
required, but never shown

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