|
1
|
//
|
|
2
|
// DUREXAppDelegate.h
|
|
3
4
5
6
7
8
9
10
|
// TestAppExample
//
// Created by Dexter Weiss on 10/10/13.
// Copyright (c) 2013 Emmoco. All rights reserved.
//
#import <UIKit/UIKit.h>
|
|
11
|
@interface BTAppDelegate : UIResponder <UIApplicationDelegate>
|
|
12
13
14
|
@property (strong, nonatomic) UIWindow *window;
@property (nonatomic, strong) IBOutlet UINavigationController *navController;
|
|
15
16
|
@property (strong, nonatomic) NSURL *handledURL;
@property (strong,nonatomic) NSString *currentVersion;
|
|
17
|
|
|
18
19
|
|
|
20
|
@end
|