|
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
|
|
23
|
|
|
24
25
26
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
27
28
|
if (self)
{
|
|
29
30
31
32
33
34
35
36
37
38
39
|
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[[EMConnectionListManager sharedManager] addObserver:self forKeyPath:@"devices" options:0 context:NULL];
}
|
|
40
41
|
-(void)_showConnectingView
{
|
|
42
43
44
45
46
47
48
49
50
51
|
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
[[NSBundle mainBundle] loadNibNamed:@"EMConnectingView_iPad" owner:self options:nil];
}
else
{
[[NSBundle mainBundle] loadNibNamed:@"EMConnectingView" owner:self options:nil];
}
[[[self popoverView] layer] setCornerRadius:10.0f];
[[self view] addSubview:[self connectingView]];
|
|
52
53
54
|
[[self activityIndicator] startAnimating];
}
|
|
55
56
|
-(void)_hideConnectingView
{
|
|
57
|
[[self activityIndicator] stopAnimating];
|
|
58
|
[[self connectingView] removeFromSuperview];
|
|
59
60
|
}
|
|
61
62
63
64
|
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if (object == [EMConnectionListManager sharedManager])
{
|
|
65
66
67
68
69
70
|
[[self tableView] reloadData];
}
}
#pragma mark - Table View Methods
|
|
71
72
|
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
|
|
73
74
75
|
return 1;
}
|
|
76
77
|
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
|
|
78
79
80
|
return MAX([[[EMConnectionListManager sharedManager] devices] count], 1);
}
|
|
81
82
|
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
|
|
83
84
85
86
|
UITableViewCell *deviceCell = [tableView dequeueReusableCellWithIdentifier:@"DeviceCell"];
[[deviceCell detailTextLabel] setTextColor:[UIColor darkGrayColor]];
EMDeviceBasicDescription *description = nil;
|
|
87
88
|
if ([indexPath row] < [[[EMConnectionListManager sharedManager] devices] count])
{
|
|
89
90
91
|
description = [[[EMConnectionListManager sharedManager] devices] objectAtIndex:[indexPath row]];
}
|
|
92
93
|
if (description)
{
|
|
94
|
[[deviceCell textLabel] setText:[description name]];
|
|
95
|
[[deviceCell detailTextLabel] setText:[NSString stringWithFormat:NSLocalizedString(@"Signal Strength: %0.0f",nil), [description signalStrength]]];
|
|
96
|
}
|
|
97
98
|
else
{
|
|
99
100
101
102
103
104
105
|
[[deviceCell textLabel] setText:NSLocalizedString(@"Searching for devices...", @"No devices found string")];
[[deviceCell detailTextLabel] setText:nil];
}
return deviceCell;
}
|
|
106
107
|
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
|
|
108
|
[self performSegueWithIdentifier:@"ConnectionSegue" sender:self];
|
|
109
|
if(![[[[tableView cellForRowAtIndexPath:indexPath] textLabel] text] isEqualToString:NSLocalizedString(@"Searching for devices...",nil)])
|
|
110
|
{
|
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
[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];
}
];
|
|
125
|
}
|
|
126
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
|
127
128
129
|
}
@end
|