forked from shaojiankui/JavaScriptCore-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppDelegate.h
More file actions
21 lines (14 loc) · 461 Bytes
/
AppDelegate.h
File metadata and controls
21 lines (14 loc) · 461 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// AppDelegate.h
// JavaScriptCore-Demo
//
// Created by Jakey on 14/12/26.
// Copyright (c) 2014年 www.skyfox.org. All rights reserved.
//
#import <UIKit/UIKit.h>
@class RootViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) RootViewController *viewController;
@property (strong, nonatomic) UINavigationController *navgationController;
@end