SceneDelegate.h 448 B

1234567891011121314151617181920212223
  1. //
  2. // SceneDelegate.h
  3. // 唔即云相册
  4. //
  5. // Created by 余衡武 on 2021/12/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "uploadFileRecordViewController.h"
  9. @interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
  10. @property (strong, nonatomic) UIWindow *window;
  11. /** 登录界面 - 外部使用 */
  12. + (void)enterLoginVC;
  13. /** 主界面 - 外部使用 */
  14. + (void)enterMainVC;
  15. /** 主界面 - 内部使用 */
  16. - (void)enterMainVCFromScene;
  17. @end