18 lines
282 B
Objective-C
18 lines
282 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Example
|
|
//
|
|
// Created by pengfei.zhou on 2019/7/25.
|
|
// Copyright © 2019 pengfei.zhou. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|