SceneDelegate.h 344 B

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