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