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