iOS AILinkBleSDK - 蓝牙SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ELDeviceScanCell.h 847B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // ELDeviceScanCell.h
  3. // AILinkBleSDK_Example
  4. //
  5. // Created by LarryZhang on 2022/12/12.
  6. // Copyright © 2022 zhengzida. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELDeviceScanCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *cidValueLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *vidValueLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *pidValueLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *macValueLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *rssiValueLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *timeValueLabel;
  18. //复用机制
  19. + (instancetype)subsribeCell:(UITableView *)tableView;
  20. //不使用复用机制
  21. + (instancetype)subsribeCell;
  22. @end
  23. NS_ASSUME_NONNULL_END