SceneDelegate.h 547 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. #import "uploadFileRecordViewController.h"
  10. @interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
  11. @property (strong, nonatomic) UIWindow *window;
  12. @property(nonatomic, strong) PlayerViewController *curPlayerVC;
  13. /** 登录界面 - 外部使用 */
  14. + (void)enterLoginVC;
  15. /** 主界面 - 外部使用 */
  16. + (void)enterMainVC;
  17. /** 主界面 - 内部使用 */
  18. - (void)enterMainVCFromScene;
  19. @end