1234567891011121314151617181920212223242526272829303132 |
- //
- // ELDeviceTypeCell.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 ELDeviceTypeCell : UITableViewCell
-
- @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
-
- @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
-
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
-
- @property (weak, nonatomic) IBOutlet UILabel *subtitleLabel;
-
-
-
- //复用机制
- + (instancetype)subsribeCell:(UITableView *)tableView;
- //不使用复用机制
- + (instancetype)subsribeCell;
-
- @end
-
- NS_ASSUME_NONNULL_END
|