MBProgressHUD使用备忘录

MBProgressHUD是替代UIProgressHUD的一个小工具,使用方法也非常简单。 
下载地址是: http://github.com/matej/MBProgressHUD 
Java代码   收藏代码
  1. #import <UIKit/UIKit.h>  
  2. #import "MBProgressHUD.h"  
  3.   
  4. @interface HudDemoViewController : UIViewController <MBProgressHUDDelegate> {  
  5.     MBProgressHUD *HUD;  
  6. }  
  7.   
  8. - (IBAction) showWithLabel:(id)sender;  
  9.   
  10. - (void) myTask;  
  11.   
  12. @end  


Java代码   收藏代码
  1. @implementation HudDemoViewController  
  2.   
  3. - (IBAction) showWithLabel:(id)sender {  
  4.   
  5.     // Should be initialized with the windows frame so the HUD disables all user input by covering the entire screen  
  6.     HUD = [[MBProgressHUD alloc] initWithWindow:[UIApplication sharedApplication].keyWindow];  
  7.   
  8.     // Add HUD to screen  
  9.     [self.view.window addSubview:HUD];  
  10.   
  11.     // Regisete for HUD callbacks so we can remove it from the window at the right time  
  12.     HUD.delegate = self;  
  13.   
  14.     HUD.labelText = @"Loading";  
  15.   
  16.     // Show the HUD while the provided method executes in a new thread  
  17.     [HUD showWhileExecuting:@selector(myTask) onTarget:self withObject:nil animated:YES];  
  18.   
  19. }  
  20.   
  21. - (void) myTask {  
  22.     // Do something usefull in here instead of sleeping ...  
  23.     sleep(3);  
  24. }  
  25.   
  26. - (void)hudWasHidden {  
  27.     // Remove HUD from screen when the HUD was hidded  
  28.     [HUD removeFromSuperview];  
  29.     [HUD release];  
  30. }  
  31.   
  32. @end  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值