UzysWrapperPickerController.m 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // UzysWrapperPickerController.m
  3. // IdolChat
  4. //
  5. // Created by Uzysjung on 2014. 1. 28..
  6. // Copyright (c) 2014년 SKPlanet. All rights reserved.
  7. //
  8. // 版权属于原作者
  9. // http://code4app.com(cn) http://code4app.net(en)
  10. // 来源于最专业的源码分享网站: Code4App
  11. #import "UzysWrapperPickerController.h"
  12. @interface UzysWrapperPickerController ()
  13. @end
  14. @implementation UzysWrapperPickerController
  15. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  16. {
  17. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  18. if (self) {
  19. // Custom initialization
  20. }
  21. return self;
  22. }
  23. - (void)viewDidLoad
  24. {
  25. [super viewDidLoad];
  26. // Do any additional setup after loading the view.
  27. }
  28. - (void)didReceiveMemoryWarning
  29. {
  30. [super didReceiveMemoryWarning];
  31. // Dispose of any resources that can be recreated.
  32. }
  33. #pragma mark - View Controller Setting /Rotation
  34. -(BOOL)shouldAutorotate
  35. {
  36. return YES;
  37. }
  38. - (UIViewController *)childViewControllerForStatusBarHidden
  39. {
  40. return nil;
  41. }
  42. - (BOOL)prefersStatusBarHidden
  43. {
  44. return YES;
  45. }
  46. - (void)dealloc
  47. {
  48. // NSLog(@"UzysWrapperPicerController dealloc");
  49. }
  50. //-(NSUInteger)supportedInterfaceOrientations
  51. //{
  52. // return UIInterfaceOrientationMaskPortrait;
  53. //}
  54. //- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
  55. //{
  56. // return UIInterfaceOrientationPortrait;
  57. //}
  58. //- (UIStatusBarStyle)preferredStatusBarStyle
  59. //{
  60. // return UIStatusBarStyleLightContent;
  61. //}
  62. @end