SplashScreen.h 435 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "UnityViewControllerBase.h"
  3. @interface SplashScreen : UIImageView
  4. {
  5. }
  6. + (SplashScreen*)Instance;
  7. @end
  8. @interface SplashScreenController : UnityViewControllerBase
  9. {
  10. }
  11. + (SplashScreenController*)Instance;
  12. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator;
  13. @end
  14. void ShowSplashScreen(UIWindow* window);
  15. void HideSplashScreen();