//
|
// HDLFVBaseViewController.h
|
// Ezviz
|
//
|
// Created by 陈启扬 on 2022/2/21.
|
// Copyright © 2022 hdl. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "HDLEZTopBarView.h"
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface HDLEZBaseViewController : UIViewController
|
|
@property (nonatomic, strong) HDLEZTopBarView *topBarView;
|
|
@property (nonatomic, copy) NSString *rightBtnTitle;//右边按钮标题
|
|
|
/*添加子view
|
*/
|
-(void)addSubViews;
|
|
/*设置标题和返回按钮
|
*/
|
- (void)setTopBarViewWithTitle:(NSString *)title;
|
|
/*返回
|
*/
|
- (void)goBack;
|
|
//点击右边按钮
|
-(void)clickRightBtn;
|
|
/*展示无数据提示View
|
*/
|
-(void)showNoDataViewWithMessage:(NSString *)message;
|
|
/*隐藏无数据提示View
|
*/
|
-(void)hideNoDataView;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|