12345678910111213141516171819 |
- //
- // YXFamilyTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/2/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXFamilyTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *textLabel;
- @property (weak, nonatomic) IBOutlet UIView *lineView;
- @end
- NS_ASSUME_NONNULL_END
|