| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // downLoadPreviewViewController.m
- // 隐私保护
- //
- // Created by xd h on 2024/1/7.
- //
- #import "downLoadPreviewViewController.h"
- @interface downLoadPreviewViewController ()
- @end
- @implementation downLoadPreviewViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
-
- self.titleLabel.text = NSLocalizedString(@"my_set_no_File_Transfer_List",nil) ;
-
- [self.toolBar setHidden:YES];
- [self.navigationBar setHidden:YES];
- [self.navBarBGView setHidden:NO];
- self.navBarBGView.backgroundColor = [UIColor whiteColor];
- [self.view setBackgroundColor:[UIColor whiteColor]];
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
-
- [self searchFileListFun];
- }
- - (void)searchFileListFun
- {
- NSNumber *curNum = [NSNumber numberWithBool:_isPhotoType];
- [[NSNotificationCenter defaultCenter] postNotificationName:searchFileListBeginNotification object:curNum];/*发送通知*/
- }
- @end
|