AllLightImagePickerController.m 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // AllLightImagePickerController.m
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/3/2.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import "AllLightImagePickerController.h"
  9. @interface AllLightImagePickerController ()
  10. @end
  11. @implementation AllLightImagePickerController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // Do any additional setup after loading the view.
  15. }
  16. - (void)didReceiveMemoryWarning {
  17. [super didReceiveMemoryWarning];
  18. // Dispose of any resources that can be recreated.
  19. }
  20. -(void)dealloc
  21. {
  22. [[UIApplication sharedApplication] setIdleTimerDisabled:YES];//屏幕常亮
  23. }
  24. /*
  25. #pragma mark - Navigation
  26. // In a storyboard-based application, you will often want to do a little preparation before navigation
  27. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  28. // Get the new view controller using [segue destinationViewController].
  29. // Pass the selected object to the new view controller.
  30. }
  31. */
  32. @end