如何在UIAlertView中显示进度条

今天这个问题是,在一个iPhone程序中,我要在后台作大量的数据处理,但愿在界面上显示一个进度条(Progress Bar)使得用户了解处理进度。这个进度条应该是在一个模态的窗口中,使界面上其余控件没法被操做。怎么用最简单的方法来实现这个功能?UIAlertView是一个现成的模态窗口,若是能把进度条嵌入到它里面就行了。 spa

 

如下内容适用于iOS 2.0+。 .net

咱们知道,若是要显示一个alert窗口(好比用来显示错误或警告信息、询问用户是否确认某操做等等),只要简单地建立一个UIAlertView对象,再调用其show方法便可。示意代码以下: 线程

1
2
3
4
5
6
7 orm

UIAlertView* alertView = [[[UIAlertView alloc] initWithTitle:@"Title" 
                                                     message:@"Message" 
                                                    delegate:nil 
                                           cancelButtonTitle:@"OK" 
                                           otherButtonTitles:nil] 
                          autorelease];
[alertView show]; 对象

若是要添加一个进度条,只要先建立并设置好一个UIProgressView的实例,再利用addSubbiew方法添加到alertView中便可。 进程

在实际应用中,我可能须要在类中保存进度条的对象实例,以便更新其状态,所以先在本身的ViewController类中添加成员变量: ci

1
2
3
4
5
6
7
8
9 get

//  MySampleViewController.h 
#import <UIKit/UIKit.h> 

@interface  MySampleViewController : UIViewController { 
@private  
    UIProgressView* progressView_;
} 

@end it

接下来写一个叫作showProgressAlert的方法来建立并显示带有进度条的alert窗口,其中高亮的部分就是把进度条添加到alertView中: io

1
2
3
4
5
6
7
8
9
10
11
12
13
14

- (void)showProgressAlert:(NSString*)title withMessage:(NSString*)message { 
    UIAlertView* alertView = [[[UIAlertView alloc] initWithTitle:title
                                                         message:message
                                                        delegate:nil 
                                               cancelButtonTitle:nil 
                                               otherButtonTitles:nil] 
                              autorelease];

    progressView_ = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
    progressView_.frame = CGRectMake(308022530);
    [alertView addSubview:progressView_];

    [alertView show];
}

为了让数据处理的子进程可以方便地修改进度条的值,再添加一个简单的方法:

1
2
3

- (void)updateProgress:(NSNumber*)progress { 
    progressView_.progress = [progress floatValue];
}

另外,数据处理完毕后,咱们还须要让进度条以及alertView消失,因为以前并无保存alertView的实例,能够经过进度条的superview访问之:

1
2
3
4
5
6
7
8
9
10
11
12
13

- (void)dismissProgressAlert { 
    if (progressView_ == nil) { 
        return;
    } 

    if ([progressView_.superview isKindOfClass:[UIAlertView class]]) { 
        UIAlertView* alertView = (UIAlertView*)progressView_.superview;
        [alertView dismissWithClickedButtonIndex:0 animated:NO];
    } 

    [progressView_ release];
    progressView_ = nil;
}

假设处理数据的方法叫processData,固然它会在一个单独的线程中运行,下面的片断示意了如何更新进度条状态,以及最后如何让它消失。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

- (void)processData:(int)total { 
    for (int i = 0; i < total; ++i) { 
        // Update UI to show progess. 
        float progress = (float)/ total;
        NSNumber* progressNumber = [NSNumber numberWithFloat:progress];
        [self performSelectorOnMainThread:@selector(updateProgress:) 
                               withObject:progressNumber
                            waitUntilDone:NO];

        // Process. 
        // do it. 
    } 

    // Finished. 
    [self performSelectorOnMainThread:@selector(dismissProgressAlert) 
                           withObject:nil 
                        waitUntilDone:YES];
    // Other finalizations. 
}

在实际使用中,带进度条的alert view大概长得是这样的:

相关文章
相关标签/搜索
每日一句
    每一个你不满意的现在,都有一个你没有努力的曾经。