| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // uploadImageOrVideoViewController.m
- // 隐私保护
- //
- // Created by xd h on 2023/11/9.
- //
- #import "uploadImageOrVideoViewController.h"
- #import <AssetsLibrary/AssetsLibrary.h>
- @interface uploadImageOrVideoViewController ()
- @property (weak, nonatomic) UILabel *titleLabel;
- @end
- @implementation uploadImageOrVideoViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
-
- [self.view setBackgroundColor:HWF5F7FAColor];
-
- [self.toolBar setHidden:YES];
- [self.navigationBar setHidden:YES];
- [self.navBarBGView setHidden:NO];
-
- [self initBaselUIFun];
- }
- - (void)initBaselUIFun
- {
- //title
- UILabel *titleLabel = [[UILabel alloc] init];
- titleLabel.textAlignment = NSTextAlignmentCenter;
- titleLabel.textColor = [UIColor whiteColor];
- titleLabel.translatesAutoresizingMaskIntoConstraints = NO;
- [self.navBarBGView addSubview:titleLabel];
- self.titleLabel = titleLabel;
- }
- @end
|