Blame view

BT Vendor/FirstAppExample/EMDevicePickerViewController.m 4.81 KB
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  EMDevicePickerViewController.m
//  TestAppExample
//
//  Created by Dexter Weiss on 10/10/13.
//  Copyright (c) 2013 Emmoco. All rights reserved.
//

#import "EMDevicePickerViewController.h"
#import "EMFramework.h"
#import <QuartzCore/QuartzCore.h>

@interface EMDevicePickerViewController ()

@property (nonatomic, strong) IBOutlet UIView *connectingView;
@property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator;
@property (nonatomic, strong) IBOutlet UIView *popoverView;

@end

@implementation EMDevicePickerViewController
Imanol-Mikel Barba Sabariego authored
23
Imanol-Mikel Barba Sabariego authored
24
25
26
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
Imanol-Mikel Barba Sabariego authored
27
28
    if (self)
    {
Imanol-Mikel Barba Sabariego authored
29
30
31
32
33
34
35
36
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
Imanol-Mikel Barba Sabariego authored
37
    [[EMConnectionManager sharedManager] setBackgroundUpdatesEnabled:TRUE];
Imanol-Mikel Barba Sabariego authored
38
39
40
	[[EMConnectionListManager sharedManager] addObserver:self forKeyPath:@"devices" options:0 context:NULL];
}
Imanol-Mikel Barba Sabariego authored
41
42
-(void)_showConnectingView
{
Imanol-Mikel Barba Sabariego authored
43
44
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    {
Imanol-Mikel Barba Sabariego authored
45
46
47
48
49
50
51
52
        if(UIDeviceOrientationIsLandscape([[UIDevice currentDevice] orientation]))
        {
            [[NSBundle mainBundle] loadNibNamed:@"EMConnectingView_iPad_Landscape" owner:self options:nil];
        }
        else
        {
            [[NSBundle mainBundle] loadNibNamed:@"EMConnectingView_iPad" owner:self options:nil];
        }
Imanol-Mikel Barba Sabariego authored
53
54
55
    }
    else
    {
Imanol-Mikel Barba Sabariego authored
56
57
58
59
60
61
62
63
        if(UIDeviceOrientationIsLandscape([[UIDevice currentDevice] orientation]))
        {
            [[NSBundle mainBundle] loadNibNamed:@"EMConnectingView" owner:self options:nil];
        }
        else
        {
            [[NSBundle mainBundle] loadNibNamed:@"EMConnectingView_Landscape" owner:self options:nil];
        }
Imanol-Mikel Barba Sabariego authored
64
65
66
    }
    [[[self popoverView] layer] setCornerRadius:10.0f];
    [[self view] addSubview:[self connectingView]];
Imanol-Mikel Barba Sabariego authored
67
68
69
    [[self activityIndicator] startAnimating];
}
Imanol-Mikel Barba Sabariego authored
70
71
-(void)_hideConnectingView
{
Imanol-Mikel Barba Sabariego authored
72
    [[self activityIndicator] stopAnimating];
Imanol-Mikel Barba Sabariego authored
73
    [[self connectingView] removeFromSuperview];
Imanol-Mikel Barba Sabariego authored
74
75
}
Imanol-Mikel Barba Sabariego authored
76
77
78
79
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if (object == [EMConnectionListManager sharedManager])
    {
Imanol-Mikel Barba Sabariego authored
80
81
82
83
84
85
        [[self tableView] reloadData];
    }
}

#pragma mark - Table View Methods
Imanol-Mikel Barba Sabariego authored
86
87
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
Imanol-Mikel Barba Sabariego authored
88
89
90
    return 1;
}
Imanol-Mikel Barba Sabariego authored
91
92
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
Imanol-Mikel Barba Sabariego authored
93
94
95
    return MAX([[[EMConnectionListManager sharedManager] devices] count], 1);
}
Imanol-Mikel Barba Sabariego authored
96
97
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
Imanol-Mikel Barba Sabariego authored
98
99
100
101
    UITableViewCell *deviceCell = [tableView dequeueReusableCellWithIdentifier:@"DeviceCell"];
    [[deviceCell detailTextLabel] setTextColor:[UIColor darkGrayColor]];

    EMDeviceBasicDescription *description = nil;
Imanol-Mikel Barba Sabariego authored
102
103
    if ([indexPath row] < [[[EMConnectionListManager sharedManager] devices] count])
    {
Imanol-Mikel Barba Sabariego authored
104
105
106
        description = [[[EMConnectionListManager sharedManager] devices] objectAtIndex:[indexPath row]];
    }
Imanol-Mikel Barba Sabariego authored
107
108
    if (description)
    {
Imanol-Mikel Barba Sabariego authored
109
        [[deviceCell textLabel] setText:[description name]];
Imanol-Mikel Barba Sabariego authored
110
        [[deviceCell detailTextLabel] setText:[NSString stringWithFormat:NSLocalizedString(@"Signal Strength: %0.0f",nil), [description signalStrength]]];
Imanol-Mikel Barba Sabariego authored
111
    }
Imanol-Mikel Barba Sabariego authored
112
113
    else
    {
Imanol-Mikel Barba Sabariego authored
114
115
116
117
118
119
120
        [[deviceCell textLabel] setText:NSLocalizedString(@"Searching for devices...", @"No devices found string")];
        [[deviceCell detailTextLabel] setText:nil];
    }

    return deviceCell;
}
Imanol-Mikel Barba Sabariego authored
121
122
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
Imanol-Mikel Barba Sabariego authored
123
    [self performSegueWithIdentifier:@"ConnectionSegue" sender:self];
Imanol-Mikel Barba Sabariego authored
124
    if(![[[[tableView cellForRowAtIndexPath:indexPath] textLabel] text] isEqualToString:NSLocalizedString(@"Searching for devices...",nil)])
Imanol-Mikel Barba Sabariego authored
125
    {
Imanol-Mikel Barba Sabariego authored
126
127
128
129
130
131
132
133
134
135
136
137
138
139
        [self _showConnectingView];
        EMDeviceBasicDescription *description = [[[EMConnectionListManager sharedManager] devices] objectAtIndex:[indexPath row]];
        [[EMConnectionManager sharedManager] connectDevice:description onSuccess:^
            {
                [self _hideConnectingView];
                [self performSegueWithIdentifier:@"ConnectionSegue" sender:self];
            }
            onFail:^(NSError *error)
            {
                [self _hideConnectingView];
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Connection Failed", @"Alert title") message:NSLocalizedString(@"An error occurred while trying to connect to the selected device", @"Alert message") delegate:nil cancelButtonTitle:NSLocalizedString(@"Close", @"Close button") otherButtonTitles:nil];
                [alert show];
            }
        ];
Imanol-Mikel Barba Sabariego authored
140
    }
Imanol-Mikel Barba Sabariego authored
141
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
Imanol-Mikel Barba Sabariego authored
142
143
144
}

@end