萤石云 iOSSDK,移植跨平台相关工程
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
//
//  TopBarView.h
//  Ezviz
//
//   Created by 陈启扬 on 2022/3/23.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface HDLEZTopBarView : UIView
 
@property (nonatomic, strong) HDLEZButton      *leftButton;//左边按钮
@property (nonatomic, strong) HDLEZButton      *backButton;//返回按钮
@property (nonatomic, strong) HDLEZButton      *rightButton;//右边按钮
@property (nonatomic, strong) UILabel       *titleLabel;//标题
@property (nonatomic, strong) UIView       *bottomLine;//下划线
@property (nonatomic, copy)  NSString *rightBtnTitle;//右边按钮标题
@property (nonatomic, copy)  NSString *leftBtnTitle;//左边按钮标题
 
 
-(void)setTitle:(NSString *)title;
 
@end
 
NS_ASSUME_NONNULL_END