1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #import "CCHud.h"
- @interface CCHud ()
- {
- UIView * _view;
- }
- @end
- @implementation CCHud
- - (id)initWithView:(id)view
- {
- self = [super init];
-
- _view = view;
- return self;
- }
- - (void)visibleHudTitle:(NSString *)title mode:(MBProgressHUDMode)mode color:(UIColor *)color
- {
- if (self.hud) return;
-
- self.hud = [MBProgressHUD showHUDAddedTo:_view animated:NO];
-
- if (!self.hud) return;
-
- self.hud.removeFromSuperViewOnHide = YES;
- self.hud.mode = mode ;
- if (title) self.hud.label.text = title;
- self.hud.hidden = NO;
- if (color) self.hud.bezelView.color = color;
- }
- - (void)visibleIndeterminateHud
- {
- [self visibleHudTitle:nil mode:MBProgressHUDModeIndeterminate color:nil];
- }
- - (void)hideHud
- {
- if (self.hud) {
- [self.hud hideAnimated:YES];
- [self.hud removeFromSuperview];
- self.hud = nil;
- }
- }
- - (void)progress:(float)progress
- {
- if (self.hud) self.hud.progress = progress;
- }
- - (void)AddButtonCancelWithTarget:(id)target selector:(NSString *)selector
- {
- [self.hud.button setTitle:NSLocalizedString(@"_cancel_", nil) forState:UIControlStateNormal];
- [self.hud.button addTarget:target action:(NSSelectorFromString(selector)) forControlEvents:UIControlEventTouchUpInside];
- }
- @end
|