1234567891011121314151617181920212223 |
- //
- // SceneDelegate.h
- // Private-X
- //
- // Created by 余衡武 on 2021/12/8.
- //
- #import <UIKit/UIKit.h>
- #import "uploadFileRecordViewController.h"
- @interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
- @property (strong, nonatomic) UIWindow *window;
- /** 登录界面 - 外部使用 */
- + (void)enterLoginVC;
- /** 主界面 - 外部使用 */
- + (void)enterMainVC;
- /** 主界面 - 内部使用 */
- - (void)enterMainVCFromScene;
- @end
|