SceneDelegate.h 505 B

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