20 lines
397 B
Objective-C
20 lines
397 B
Objective-C
//
|
|
// LIAppDelegate.h
|
|
// Example
|
|
//
|
|
// Created by 徐 楽楽 on 12/01/25.
|
|
// Copyright (c) 2012年 ラクラクテクノロジーズ. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class LIViewController;
|
|
|
|
@interface LIAppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@property (strong, nonatomic) LIViewController *viewController;
|
|
|
|
@end
|