123456789101112131415161718192021222324252627282930 |
- //
- // MTBaseViewController
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MTViewControllerProtocol.h"
- #import "CustomNaviBarView.h"
- @interface MTBaseViewController : UIViewController <MTViewControllerProtocol>
- @property (nonatomic, strong) CustomNaviBarView *navgationView;
- - (void)bringNaviBarToTopmost;
- - (void)hideNaviBar:(BOOL)bIsHide;
- - (void)setNaviBarTitle:(NSString *)strTitle;
- - (void)setNaviBarLeftBtn:(UIButton *)btn;
- - (void)setNaviBarRightBtn:(UIButton *)btn;
- - (void)setNaviBarTitleView:(UIView *)titleView;
- - (void)setNaviBarLeftButtonArray:(NSArray *)leftButtonArray;
- - (void)setNaviBarRightButtonArray:(NSArray *)rightButtonArray;
- - (void)navigationCanDragBack:(BOOL)bCanDragBack;
- - (void)makeViewNaviBarBackground:(UIColor*)color;
- - (void) mt_bindViewModel;
- - (void) mt_addSubviews;
- - (void) mt_layoutNavigation;
- @end
|