// // BaseViewController.h // JiushiMarking // // Created by 小收 on 2019/7/18. // Copyright © 2019 小收. All rights reserved. // #import #import "NoContentView.h" #import "CustomNaviBarView.h" @interface BaseViewController : UIViewController @property(nonatomic, strong)NoContentView *noContentV; @property(nonatomic, strong)CustomNaviBarView *naviView; -(void)showNaviBarWithTitle:(NSString *)title; -(void)onNaviBack; -(void)onChangeNaviWhiteStyle; @end