// // ELDeviceScanCell.h // AILinkBleSDK_Example // // Created by LarryZhang on 2022/12/12. // Copyright © 2022 zhengzida. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface ELDeviceScanCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *iconImageView; @property (weak, nonatomic) IBOutlet UILabel *cidValueLabel; @property (weak, nonatomic) IBOutlet UILabel *vidValueLabel; @property (weak, nonatomic) IBOutlet UILabel *pidValueLabel; @property (weak, nonatomic) IBOutlet UILabel *macValueLabel; @property (weak, nonatomic) IBOutlet UILabel *rssiValueLabel; @property (weak, nonatomic) IBOutlet UILabel *timeValueLabel; //复用机制 + (instancetype)subsribeCell:(UITableView *)tableView; //不使用复用机制 + (instancetype)subsribeCell; @end NS_ASSUME_NONNULL_END