12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // ELDeviceScanCell.h
- // AILinkBleSDK_Example
- //
- // Created by LarryZhang on 2022/12/12.
- // Copyright © 2022 zhengzida. All rights reserved.
- //
-
- #import <UIKit/UIKit.h>
-
- 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
|