//
|
// 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
|