16 lines
220 B
Objective-C
16 lines
220 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// keyBoard
|
|
//
|
|
// Created by 张伟 on 2025/10/27.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
|
|
@end
|
|
|