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.

ELDeviceTypeCell.h 651B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ELDeviceTypeCell.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 ELDeviceTypeCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *subtitleLabel;
  15. //复用机制
  16. + (instancetype)subsribeCell:(UITableView *)tableView;
  17. //不使用复用机制
  18. + (instancetype)subsribeCell;
  19. @end
  20. NS_ASSUME_NONNULL_END