26 lines
490 B
Objective-C
Executable File
26 lines
490 B
Objective-C
Executable File
//
|
|
// BaseViewController.h
|
|
// JiushiMarking
|
|
//
|
|
// Created by 小收 on 2019/7/18.
|
|
// Copyright © 2019 小收. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#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
|