00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <UIKit/UIKit.h>
00010 #import "MBProgressHUD.h"
00011
00012 @interface HudDemoViewController : UIViewController <MBProgressHUDDelegate> {
00013 MBProgressHUD *HUD;
00014 }
00015
00016 - (IBAction) showSimple:(id)sender;
00017 - (IBAction) showWithLabel:(id)sender;
00018 - (IBAction) showWithDetailsLabel:(id)sender;
00019 - (IBAction) showWithLabelDeterminate:(id)sender;
00020 - (IBAction) showWithLabelMixed:(id)sender;
00021
00022 - (void) myTask;
00023 - (void) myProgressTask;
00024 - (void) myMixedTask;
00025
00026 @end
00027