MTBaseViewController.m 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. //
  2. // MTBaseViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseViewController.h"
  8. #import "CustomNavigationController.h"
  9. @interface MTBaseViewController ()
  10. @end
  11. @implementation MTBaseViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.automaticallyAdjustsScrollViewInsets = NO;
  15. self.view.backgroundColor = [UIColor whiteColor];
  16. [self.view addSubview:self.navgationView];
  17. [self mt_layoutNavigation];
  18. [self mt_addSubviews];
  19. [self mt_bindViewModel];
  20. }
  21. - (void) mt_bindViewModel{};
  22. - (void) mt_addSubviews{};
  23. - (void) mt_layoutNavigation{};
  24. -(CustomNaviBarView *)navgationView{
  25. if (!_navgationView) {
  26. _navgationView = [[CustomNaviBarView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
  27. _navgationView.m_viewCtrlParent = self;
  28. }
  29. return _navgationView;
  30. }
  31. - (void)viewWillDisappear:(BOOL)animated {
  32. [super viewWillDisappear:animated];
  33. DismissHud();
  34. }
  35. /**
  36. 使用VM配置初始化VC
  37. @param viewModel 对应的VM
  38. @return 对象
  39. */
  40. - (instancetype)initWithViewModel:(id)viewModel {
  41. self = [super init];
  42. if (self) {
  43. }
  44. return self;
  45. }
  46. /**
  47. 配置navigation,设置导航栏、分栏
  48. */
  49. - (void)viewDidAppear:(BOOL)animated {
  50. [super viewDidAppear:animated];
  51. [self.navigationController.navigationBar setHidden:YES];
  52. NSLog(@"\n----当前Class----\n----%@---- \n", NSStringFromClass([self class]));
  53. }
  54. - (void)viewWillAppear:(BOOL)animated {
  55. [super viewWillAppear:animated];
  56. [self.navigationController.navigationBar setHidden:YES];
  57. if (_navgationView && !_navgationView.hidden)
  58. {
  59. [self.view bringSubviewToFront:_navgationView];
  60. }else{}
  61. }
  62. -(void)viewDidDisappear:(BOOL)animated{
  63. [super viewDidDisappear:animated];
  64. }
  65. -(void)makeViewNaviBarBackground:(UIColor*)color{
  66. if (_navgationView) {
  67. [_navgationView setBgColor:color];
  68. }
  69. }
  70. - (void)didReceiveMemoryWarning
  71. {
  72. [super didReceiveMemoryWarning];
  73. }
  74. #pragma mark -
  75. - (void)bringNaviBarToTopmost
  76. {
  77. if (_navgationView)
  78. {
  79. [self.view bringSubviewToFront:_navgationView];
  80. }else{}
  81. }
  82. - (void)hideNaviBar:(BOOL)bIsHide
  83. {
  84. if (_navgationView) {
  85. _navgationView.hidden = bIsHide;
  86. }else{}
  87. }
  88. - (void)setNaviBarTitleView:(UIView *)titleView{
  89. if (_navgationView) {
  90. [_navgationView setTitleView:titleView];
  91. }else{}
  92. }
  93. - (void)setNaviBarTitle:(NSString *)strTitle
  94. {
  95. if (_navgationView)
  96. {
  97. [_navgationView setTitle:strTitle];
  98. }else{}
  99. }
  100. - (void)setNaviBarLeftBtn:(UIButton *)btn
  101. {
  102. if (_navgationView)
  103. {
  104. [_navgationView setLeftBtn:btn];
  105. }else{}
  106. }
  107. - (void)setNaviBarRightBtn:(UIButton *)btn
  108. {
  109. if (_navgationView)
  110. {
  111. [_navgationView setRightBtn:btn];
  112. }else{}
  113. }
  114. - (void)setNaviBarLeftButtonArray:(NSArray *)leftButtonArray{
  115. if (_navgationView)
  116. {
  117. [_navgationView setLeftButtonArray:leftButtonArray];
  118. }else{}
  119. }
  120. - (void)setNaviBarRightButtonArray:(NSArray *)rightButtonArray{
  121. if (_navgationView)
  122. {
  123. [_navgationView setRightButtonArray:rightButtonArray];
  124. }else{}
  125. }
  126. // 是否可右滑返回
  127. - (void)navigationCanDragBack:(BOOL)bCanDragBack
  128. {
  129. if (self.navigationController){
  130. [((CustomNavigationController *)(self.navigationController)) navigationCanDragBack:bCanDragBack];
  131. }else{}
  132. }
  133. @end