blob: 573f71a5486f306a276e2b385400f1988cdb7fc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// AppDelegate.h
// cakeside-ios
//
// Created by mo khan on 2013-07-14.
// Copyright (c) 2013 mo khan. All rights reserved.
//
#import <UIKit/UIKit.h>
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@end
|