码迷,mamicode.com
首页 > 其他好文 > 详细

MBProgressHUDDemo

时间:2014-11-27 23:26:59      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   on   2014   log   bs   cti   

//

//  ZBMainViewController.m

//  MBProgressHUDDemo

//

//  Created by 张先森 on 14/11/27.

//  Copyright (c) 2014年 zhibin. All rights reserved.

//

 

#import "ZBMainViewController.h"

#import "MBProgressHUD+MJ.h"

@interface ZBMainViewController ()

{

    MBProgressHUD *HUD;

 

}

 

 

- (IBAction)showTextDialog:(id)sender;

- (IBAction)showProgressOne:(id)sender;

- (IBAction)showProgressTwo:(id)sender;

- (IBAction)showProgressThree:(id)sender;

- (IBAction)showCustomDialog:(id)sender;

- (IBAction)showAllTextDialog:(id)sender;

 

@end

 

@implementation ZBMainViewController

 

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil

{

    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

    if (self) {

        // Custom initialization

    }

    return self;

}

 

- (void)viewDidLoad

{

    [super viewDidLoad];

    // Do any additional setup after loading the view from its nib.

}

 

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

- (IBAction)showTextDialog:(id)sender {

    HUD=[[MBProgressHUD alloc] initWithView:self.view];

    

    [self.view addSubview:HUD];

    HUD.dimBackground=YES;

    HUD.labelText=@"请稍后";

    

    [HUD showAnimated:YES whileExecutingBlock:^{

        sleep(10);

    } completionBlock:^{

             [HUD removeFromSuperview];

    }];

    

}

 

- (IBAction)showProgressOne:(id)sender {

    HUD =[[MBProgressHUD alloc] initWithView:self.view];

    [self.view addSubview:HUD];

    HUD.mode=MBProgressHUDModeDeterminate;

      HUD.labelText=@"请稍后";

    [HUD showAnimated:YES whileExecutingBlock:^{

        

        float progress = 0.0f;

        while (progress < 1.0f) {

            progress += 0.01f;

            HUD.progress = progress;

            usleep(10000);

        }

    } completionBlock:^{

        [HUD removeFromSuperview];

   

        HUD = nil;

    }];

    

    

}

 

 

- (IBAction)showProgressTwo:(id)sender {

    

    HUD=[[MBProgressHUD alloc] initWithView:self.view];

    [self.view addSubview:HUD];

       HUD.labelText=@"请稍后";

    

        HUD.mode=MBProgressHUDModeAnnularDeterminate;

    [HUD showAnimated:YES whileExecutingBlock:^{

        

        float progress = 0.0f;

        while (progress < 1.0f) {

            progress += 0.01f;

            HUD.progress = progress;

            usleep(10000);

        }

    } completionBlock:^{

        [HUD removeFromSuperview];

        

        HUD = nil;

    }];

}

 

- (IBAction)showProgressThree:(id)sender {

    

    HUD=[[MBProgressHUD alloc] initWithView:self.view];

    [self.view addSubview:HUD];

    HUD.labelText=@"请稍后";

    

    HUD.mode=MBProgressHUDModeDeterminateHorizontalBar;

    [HUD showAnimated:YES whileExecutingBlock:^{

        

        float progress = 0.0f;

        while (progress < 1.0f) {

            progress += 0.01f;

            HUD.progress = progress;

            usleep(10000);

        }

    } completionBlock:^{

        [HUD removeFromSuperview];

        

        HUD = nil;

    }];

}

 

- (IBAction)showCustomDialog:(id)sender {

    HUD=[[MBProgressHUD alloc] initWithView:self.view];

    HUD.mode=MBProgressHUDModeCustomView;

     HUD.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tabbar_profile_selected_os7"]];

    

    [self.view addSubview:HUD];

    HUD.labelText=@"请稍后再试试";

    [HUD showAnimated:YES whileExecutingBlock:^{

        

            sleep(2);

        

    } completionBlock:^{

        

        

        [HUD removeFromSuperview];

      

        HUD = nil;

    }];

    

    

}

 

- (IBAction)showAllTextDialog:(id)sender {

    

    HUD = [[MBProgressHUD alloc] initWithView:self.view];

    [self.view addSubview:HUD];

    

    HUD.labelText = @"操作成功";

    HUD.mode = MBProgressHUDModeText;

  //  HUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Checkmark"]] ];

    [HUD showAnimated:YES whileExecutingBlock:^{

        sleep(2);

    } completionBlock:^{

        [HUD removeFromSuperview];

    

        HUD = nil;

    }];

    

    

}

@end

 

MBProgressHUDDemo

标签:io   ar   os   sp   on   2014   log   bs   cti   

原文地址:http://www.cnblogs.com/zhibin/p/4127345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!