17 lines
268 B
Objective-C
17 lines
268 B
Objective-C
|
//
|
||
|
// AppDelegate.h
|
||
|
// demo
|
||
|
//
|
||
|
// Created by 杨涛 on 2020/2/6.
|
||
|
// Copyright © 2020 finogeeks. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||
|
|
||
|
@property (strong, nonatomic) UIWindow *window;
|
||
|
|
||
|
@end
|
||
|
|