123456789101112131415161718 |
- //
- // MyListTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/2/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyListTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @end
- NS_ASSUME_NONNULL_END
|