downLoadPreviewViewController.m 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // downLoadPreviewViewController.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/1/7.
  6. //
  7. #import "downLoadPreviewViewController.h"
  8. @interface downLoadPreviewViewController ()
  9. @end
  10. @implementation downLoadPreviewViewController
  11. - (void)viewDidLoad {
  12. [super viewDidLoad];
  13. // Do any additional setup after loading the view.
  14. self.titleLabel.text = NSLocalizedString(@"my_set_no_File_Transfer_List",nil) ;
  15. [self.toolBar setHidden:YES];
  16. [self.navigationBar setHidden:YES];
  17. [self.navBarBGView setHidden:NO];
  18. self.navBarBGView.backgroundColor = [UIColor whiteColor];
  19. [self.view setBackgroundColor:[UIColor whiteColor]];
  20. }
  21. - (void)viewWillAppear:(BOOL)animated
  22. {
  23. [super viewWillAppear:animated];
  24. [self searchFileListFun];
  25. }
  26. - (void)searchFileListFun
  27. {
  28. NSNumber *curNum = [NSNumber numberWithBool:_isPhotoType];
  29. [[NSNotificationCenter defaultCenter] postNotificationName:searchFileListBeginNotification object:curNum];/*发送通知*/
  30. }
  31. @end