Blame view

BT Vendor/FirstAppExample/DUREXAppViewController.m 2.32 KB
Imanol-Mikel Barba Sabariego authored
1
2
#import "DUREXAppViewController.h"
#import "EMFramework.h"
Imanol-Mikel Barba Sabariego authored
3
#import "CommunicationProtocol.h"
Imanol-Mikel Barba Sabariego authored
4
5
6
7
8
9

@interface DUREXAppViewController ()
{
    IBOutlet UIActivityIndicatorView *_activityIndicator;
    NSTimer *_writeTimer;
}
Imanol-Mikel Barba Sabariego authored
10
@property (nonatomic,strong) CommunicationProtocol* protocol;
Imanol-Mikel Barba Sabariego authored
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];
Imanol-Mikel Barba Sabariego authored
30
31
    [self setTitle:@"DUREX Vendor Control"];
    _protocol = [CommunicationProtocol sharedProtocol];
Imanol-Mikel Barba Sabariego authored
32
33
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didReceiveNotification:) name:kEMConnectionDidReceiveIndicatorNotificationName object:nil];
    [[EMConnectionManager sharedManager] addObserver:self forKeyPath:@"connectionState" options:0 context:NULL];
Imanol-Mikel Barba Sabariego authored
34
    [_protocol setMessageAvailable:false];
Imanol-Mikel Barba Sabariego authored
35
36
37
38
39
40
}

-(void)didReceiveNotification:(NSNotification*) notification
{
    id notificationValue = [[notification userInfo] objectForKey:kEMIndicatorResourceValueKey];
    NSString *resourceName = [[notification userInfo] objectForKey:kEMIndicatorNameKey];
Imanol-Mikel Barba Sabariego authored
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];
        }
    }
Imanol-Mikel Barba Sabariego authored
53
54
55
56
57
}

-(void)dealloc
{
    [[EMConnectionManager sharedManager] removeObserver:self forKeyPath:@"connectionState"];
Imanol-Mikel Barba Sabariego authored
58
    [[NSNotificationCenter defaultCenter] removeObserver:self];
Imanol-Mikel Barba Sabariego authored
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