萤石云 iOSSDK,移植跨平台相关工程
Davin
2024-12-18 b4e1288a9b63eb820e9c9489c56aac4bf6b31067
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
//  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