123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- //
- // MTBaseViewController.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseViewController.h"
- #import "CustomNavigationController.h"
- @interface MTBaseViewController ()
- @end
- @implementation MTBaseViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.automaticallyAdjustsScrollViewInsets = NO;
-
- self.view.backgroundColor = [UIColor whiteColor];
- [self.view addSubview:self.navgationView];
-
- [self mt_layoutNavigation];
- [self mt_addSubviews];
- [self mt_bindViewModel];
- }
- - (void) mt_bindViewModel{};
- - (void) mt_addSubviews{};
- - (void) mt_layoutNavigation{};
- -(CustomNaviBarView *)navgationView{
- if (!_navgationView) {
- _navgationView = [[CustomNaviBarView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
- _navgationView.m_viewCtrlParent = self;
- }
- return _navgationView;
- }
- - (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
- DismissHud();
- }
- /**
- 使用VM配置初始化VC
-
- @param viewModel 对应的VM
- @return 对象
- */
- - (instancetype)initWithViewModel:(id)viewModel {
- self = [super init];
- if (self) {
- }
- return self;
- }
- /**
- 配置navigation,设置导航栏、分栏
- */
- - (void)viewDidAppear:(BOOL)animated {
- [super viewDidAppear:animated];
- [self.navigationController.navigationBar setHidden:YES];
- NSLog(@"\n----当前Class----\n----%@---- \n", NSStringFromClass([self class]));
- }
- - (void)viewWillAppear:(BOOL)animated {
-
- [super viewWillAppear:animated];
- [self.navigationController.navigationBar setHidden:YES];
- if (_navgationView && !_navgationView.hidden)
- {
- [self.view bringSubviewToFront:_navgationView];
- }else{}
- }
- -(void)viewDidDisappear:(BOOL)animated{
- [super viewDidDisappear:animated];
- }
- -(void)makeViewNaviBarBackground:(UIColor*)color{
- if (_navgationView) {
- [_navgationView setBgColor:color];
- }
-
- }
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
-
- }
- #pragma mark -
- - (void)bringNaviBarToTopmost
- {
- if (_navgationView)
- {
- [self.view bringSubviewToFront:_navgationView];
- }else{}
- }
- - (void)hideNaviBar:(BOOL)bIsHide
- {
- if (_navgationView) {
- _navgationView.hidden = bIsHide;
- }else{}
-
- }
- - (void)setNaviBarTitleView:(UIView *)titleView{
- if (_navgationView) {
- [_navgationView setTitleView:titleView];
- }else{}
- }
- - (void)setNaviBarTitle:(NSString *)strTitle
- {
- if (_navgationView)
- {
- [_navgationView setTitle:strTitle];
- }else{}
- }
- - (void)setNaviBarLeftBtn:(UIButton *)btn
- {
- if (_navgationView)
- {
- [_navgationView setLeftBtn:btn];
- }else{}
- }
- - (void)setNaviBarRightBtn:(UIButton *)btn
- {
- if (_navgationView)
- {
- [_navgationView setRightBtn:btn];
- }else{}
- }
- - (void)setNaviBarLeftButtonArray:(NSArray *)leftButtonArray{
- if (_navgationView)
- {
- [_navgationView setLeftButtonArray:leftButtonArray];
- }else{}
- }
- - (void)setNaviBarRightButtonArray:(NSArray *)rightButtonArray{
- if (_navgationView)
- {
- [_navgationView setRightButtonArray:rightButtonArray];
- }else{}
- }
- // 是否可右滑返回
- - (void)navigationCanDragBack:(BOOL)bCanDragBack
- {
- if (self.navigationController){
- [((CustomNavigationController *)(self.navigationController)) navigationCanDragBack:bCanDragBack];
- }else{}
- }
- @end
|