Blame view

BT Vendor/FirstAppExample/BTAppDelegate.m 3.54 KB
Imanol-Mikel Barba Sabariego authored
1
//
Imanol-Mikel Barba Sabariego authored
2
//  DUREXAppDelegate.m
Imanol-Mikel Barba Sabariego authored
3
4
5
6
7
8
//  TestAppExample
//
//  Created by Dexter Weiss on 10/10/13.
//  Copyright (c) 2013 Emmoco. All rights reserved.
//
9
#import "BTAppDelegate.h"
Imanol-Mikel Barba Sabariego authored
10
11
#import "EMFramework.h"
#import "EMDevicePickerViewController.h"
12
#import "MenuTableViewController.h"
Imanol-Mikel Barba Sabariego authored
13
14
@interface BTAppDelegate () <UINavigationControllerDelegate>
Imanol-Mikel Barba Sabariego authored
15
16
{
Imanol-Mikel Barba Sabariego authored
17
18
19
20
}

@end
21
@implementation BTAppDelegate
Imanol-Mikel Barba Sabariego authored
22
23
24
25
26
27
28
29

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    UINavigationController *navController = (UINavigationController *)[[self window] rootViewController];
    [self setNavController:navController];
    [[self navController] setDelegate:self];

    [[EMConnectionListManager sharedManager] startUpdating];
30
31

    self.handledURL = nil;
Imanol-Mikel Barba Sabariego authored
32
    self.currentVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
Imanol-Mikel Barba Sabariego authored
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
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    [[EMConnectionListManager sharedManager] startUpdating];
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

#pragma mark - Navigation Controller
Imanol-Mikel Barba Sabariego authored
65
66
67
68
69
70
71
72
73
74
75
76
77
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    if ([viewController isKindOfClass:[EMDevicePickerViewController class]])
    {
        [[EMConnectionManager sharedManager] disconnectWithSuccess:^
            {

            }
            onFail:^(NSError *error)
            {

            }
        ];
Imanol-Mikel Barba Sabariego authored
78
79
80
    }
}
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
    NSLog(@"[DUREXAppDelegate.m]: Handling URL %@",url);
    if ([self.navController.topViewController isKindOfClass:[MenuTableViewController class]])
    {
        MenuTableViewController *viewController = (MenuTableViewController*) self.navController.topViewController;
        if (url != nil && [url isFileURL])
        {
            NSLog(@"[DUREXAppDelegate.m]: Pushing URL to MenuTableViewController...");
            [viewController handleOpenURL:url];
        }
    }
    else
    {
        NSLog(@"[DUREXAppDelegate.m]: Storing handled URL...");
        self.handledURL = url;
    }
    return YES;
}
Imanol-Mikel Barba Sabariego authored
101
@end