MyListTableViewCell.h 333 B

123456789101112131415161718
  1. //
  2. // MyListTableViewCell.h
  3. // Temperature
  4. //
  5. // Created by TC on 2025/2/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MyListTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @end
  13. NS_ASSUME_NONNULL_END