Files
yuyin_ios/SweetParty/主类/Others/Base/BaseViewController.h
2025-08-08 11:05:33 +08:00

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