al
liurenjie
2021-07-03 1b73d5d0b495f2d643c2523e1b8399f925b4f702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
//  BaseController.m
//  BuWanVideo2.0
//
//  Created by Aeline on 2021/5/23.
//  Copyright © 2021 com.yeshi.buwansheque.ios. All rights reserved.
//
 
#import "BaseController.h"
 
@interface BaseController ()
 
@end
 
@implementation BaseController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
    [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
}
 
/*
#pragma mark - Navigation
 
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/
 
- (PlistFileOperator *)plist {
    if (!_plist) {
        _plist = [[PlistFileOperator alloc] init];
    }
    return _plist;
}
 
@end