|
1
2
|
#import "DUREXAppViewController.h"
#import "EMFramework.h"
|
|
3
|
#import "CommunicationProtocol.h"
|
|
4
5
6
7
8
9
|
@interface DUREXAppViewController ()
{
IBOutlet UIActivityIndicatorView *_activityIndicator;
NSTimer *_writeTimer;
}
|
|
10
|
@property (nonatomic,strong) CommunicationProtocol* protocol;
|
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@end
@implementation DUREXAppViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[_activityIndicator setHidden:YES];
|
|
30
31
|
[self setTitle:@"DUREX Vendor Control"];
_protocol = [CommunicationProtocol sharedProtocol];
|
|
32
33
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didReceiveNotification:) name:kEMConnectionDidReceiveIndicatorNotificationName object:nil];
[[EMConnectionManager sharedManager] addObserver:self forKeyPath:@"connectionState" options:0 context:NULL];
|
|
34
|
[_protocol setMessageAvailable:false];
|
|
35
36
37
38
39
40
|
}
-(void)didReceiveNotification:(NSNotification*) notification
{
id notificationValue = [[notification userInfo] objectForKey:kEMIndicatorResourceValueKey];
NSString *resourceName = [[notification userInfo] objectForKey:kEMIndicatorNameKey];
|
|
41
42
43
44
45
46
47
48
49
50
51
52
|
if([resourceName isEqualToString:@"messageAvailable"])
{
NSString *resourceValue = [notificationValue stringValue];
if([resourceValue isEqualToString:@"TRUE"])
{
[_protocol setMessageAvailable:TRUE];
}
else
{
[_protocol setMessageAvailable:FALSE];
}
}
|
|
53
54
55
56
57
|
}
-(void)dealloc
{
[[EMConnectionManager sharedManager] removeObserver:self forKeyPath:@"connectionState"];
|
|
58
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
}
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if (object == [EMConnectionManager sharedManager])
{
if ([keyPath isEqualToString:@"connectionState"])
{
if ([[EMConnectionManager sharedManager] connectionState] == EMConnectionStateDisrupted)
{
[[self navigationController] popToRootViewControllerAnimated:YES];
}
}
}
}
#pragma mark - Interface actions
@end
|