forked from ddgromit/love-your-work-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HPRequestDialogs.m
62 lines (55 loc) · 1.27 KB
/
HPRequestDialogs.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//
// HPRequestDialogs.m
// LoveYourWork
//
// Created by Derek Dahmer on 11/21/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "HPRequestDialogs.h"
@implementation HPRequestDialogs
@synthesize progressHUD;
@synthesize errorHUD;
@synthesize view;
- (id)initWithView:(UIView*) newView
{
self = [super init];
self.view = newView;
return self;
}
- (void)showLoadingWithMessage:(NSString*) message
{
self.progressHUD.labelText = message;
[self.progressHUD show:true];
}
- (void)hideLoading
{
[self.progressHUD hide:true];
}
- (void)showErrorWithMessage:(NSString*) message
{
self.errorHUD.detailsLabelText = message;
[self.progressHUD hide:false];
[self.errorHUD show:false];
[self.errorHUD hide:true afterDelay:2];
}
- (MBProgressHUD*)progressHUD
{
if (_progressHUD == nil)
{
_progressHUD = [[MBProgressHUD alloc] initWithView:self.view];
_progressHUD.labelText = @"Loading";
[self.view addSubview:_progressHUD];
}
return _progressHUD;
}
- (MBProgressHUD*)errorHUD
{
if (_errorHUD == nil)
{
_errorHUD = [[MBProgressHUD alloc] initWithView:self.view];
_errorHUD.labelText = @"Error";
[self.view addSubview:_errorHUD];
}
return _errorHUD;
}
@end