//
|
// 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
|