MTBaseViewController.h 920 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MTBaseViewController
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MTViewControllerProtocol.h"
  9. #import "CustomNaviBarView.h"
  10. @interface MTBaseViewController : UIViewController <MTViewControllerProtocol>
  11. @property (nonatomic, strong) CustomNaviBarView *navgationView;
  12. - (void)bringNaviBarToTopmost;
  13. - (void)hideNaviBar:(BOOL)bIsHide;
  14. - (void)setNaviBarTitle:(NSString *)strTitle;
  15. - (void)setNaviBarLeftBtn:(UIButton *)btn;
  16. - (void)setNaviBarRightBtn:(UIButton *)btn;
  17. - (void)setNaviBarTitleView:(UIView *)titleView;
  18. - (void)setNaviBarLeftButtonArray:(NSArray *)leftButtonArray;
  19. - (void)setNaviBarRightButtonArray:(NSArray *)rightButtonArray;
  20. - (void)navigationCanDragBack:(BOOL)bCanDragBack;
  21. - (void)makeViewNaviBarBackground:(UIColor*)color;
  22. - (void) mt_bindViewModel;
  23. - (void) mt_addSubviews;
  24. - (void) mt_layoutNavigation;
  25. @end