CYImagePickerViewController.m 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // CYImagePickerViewController.m
  3. // UniversalApp
  4. //
  5. // Created by 志刚杨 on 2018/1/31.
  6. // Copyright © 2018年 voidcat. All rights reserved.
  7. //
  8. #import "CYImagePickerViewController.h"
  9. @interface CYImagePickerViewController ()
  10. @end
  11. @implementation CYImagePickerViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // self.needShowStatusBar = ![UIApplication sharedApplication].statusBarHidden;
  15. self.view.backgroundColor = [UIColor whiteColor];
  16. self.navigationBar.barStyle = UIBarStyleBlack;
  17. self.navigationBar.translucent = YES;
  18. self.oKButtonTitleColorNormal = [UIColor blackColor];
  19. self.oKButtonTitleColorDisabled = [UIColor blackColor];
  20. // @property (nonatomic, strong) UIColor *oKButtonTitleColorNormal;
  21. // @property (nonatomic, strong) UIColor *oKButtonTitleColorDisabled;
  22. // if (iOS7Later) {
  23. self.navigationBar.barTintColor = [UIColor blackColor];
  24. self.navigationBar.tintColor = [UIColor blackColor];
  25. self.automaticallyAdjustsScrollViewInsets = NO;
  26. // if (self.needShowStatusBar) [UIApplication sharedApplication].statusBarHidden = NO;
  27. // }
  28. self.naviTitleColor = [UIColor blackColor];
  29. }
  30. - (void)didReceiveMemoryWarning {
  31. [super didReceiveMemoryWarning];
  32. // Dispose of any resources that can be recreated.
  33. }
  34. /*
  35. #pragma mark - Navigation
  36. // In a storyboard-based application, you will often want to do a little preparation before navigation
  37. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  38. // Get the new view controller using [segue destinationViewController].
  39. // Pass the selected object to the new view controller.
  40. }
  41. */
  42. @end