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
//
//  HDLFVNormalCellView.h
//  Ezviz
//
//  Created by 陈启扬 on 2022/4/25.
//  Copyright © 2022 hdl. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
typedef void (^HDLEZCellVoidBlock)(void);
 
NS_ASSUME_NONNULL_BEGIN
 
@interface HDLEZNormalCellView : UIView
 
@property (nonatomic, strong)UILabel *titleL;//标题Lable
 
@property (nonatomic, copy)NSString *title;//标题
 
@property (nonatomic, strong)UILabel *contentL;//内容Lable
 
@property (nonatomic, strong)UIView *lineV;//下划线
 
 
@property (nonatomic, strong)UIButton *button;//按钮
 
 
@property(nonatomic,strong)HDLEZCellVoidBlock clickBtn; //点击按钮
 
/*隐藏右侧箭头
 */
-(void)hideNextImg;
 
@end
 
NS_ASSUME_NONNULL_END