16 lines
221 B
Objective-C
16 lines
221 B
Objective-C
|
//
|
||
|
// AppDelegate.h
|
||
|
// FinDemo
|
||
|
//
|
||
|
// Created by 胡健辉 on 2023/5/29.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||
|
|
||
|
@property (strong, nonatomic) UIWindow *window;
|
||
|
|
||
|
@end
|
||
|
|