SceneDelegate.h 406 B

1234567891011121314151617181920212223
  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. /** 主界面 - 内部使用 */
  15. - (void)enterMainVCFromScene;
  16. @end