EBBannerViewController.m 909 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // EBBannerViewController.m
  3. // demo
  4. //
  5. // Created by pikacode@qq.com on 2017/10/23.
  6. // Copyright © 2017年 pikacode@qq.com. All rights reserved.
  7. //
  8. #import "EBBannerViewController.h"
  9. @interface EBBannerViewController ()
  10. @end
  11. @implementation EBBannerViewController
  12. - (instancetype)init
  13. {
  14. self = [self initWithNibName:@"EBBannerViewController" bundle:[NSBundle bundleForClass:self.class]];
  15. if (self) {
  16. }
  17. return self;
  18. }
  19. static UIInterfaceOrientationMask supportedOrientations;
  20. +(void)setSupportedInterfaceOrientations:(UIInterfaceOrientationMask)orientations{
  21. supportedOrientations = orientations;
  22. }
  23. +(void)setStatusBarHidden:(BOOL)hidden{
  24. statusBarHidden = hidden;
  25. }
  26. -(UIInterfaceOrientationMask)supportedInterfaceOrientations{
  27. return supportedOrientations;
  28. }
  29. static BOOL statusBarHidden;
  30. -(BOOL)prefersStatusBarHidden{
  31. return statusBarHidden;
  32. }
  33. @end