Blame view

DUREX tests/FirstAppExample/EMDevicePickerViewController.m 2.37 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
//  EMDevicePickerViewController.m
//  TestAppExample
//
//  Created by Dexter Weiss on 10/10/13.
//  Copyright (c) 2013 Emmoco. All rights reserved.
//

#import "EMDevicePickerViewController.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

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self)
    {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    //[[NSBundle mainBundle] loadNibNamed:@"EMConnectingView" owner:self options:nil];
    [[[self popoverView] layer] setCornerRadius:10.0f];
    [[self connectingView] setHidden:YES];
    [[self connectingView] setFrame:[[self view] bounds]];
    [[self view] addSubview:[self connectingView]];

}

-(void)_showConnectingView
{
    [[self activityIndicator] startAnimating];
    [[self connectingView] setHidden:NO];
}

-(void)_hideConnectingView
{
    [[self activityIndicator] stopAnimating];
    [[self connectingView] setHidden:YES];
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{

}

#pragma mark - Table View Methods

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"DeviceCell"];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"DeviceCell"];
    }
Imanol-Mikel Barba Sabariego authored
81
82
    [[cell textLabel] setText:NSLocalizedString(@"PIECE OF CRAP 2000 PRO ULTRA", nil)];
    [[cell detailTextLabel] setText:NSLocalizedString(@"FUCKING ONLINE", nil)];
Imanol-Mikel Barba Sabariego authored
83
84
85
86
87
88
89
90
91
    return cell;
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [self performSegueWithIdentifier:@"ConnectionSegue" sender:self];
}

@end