// // WHomeHeartAndTempCell.h // tongxin // // Created by Apple on 2020/4/8. // Copyright © 2020 xTT. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface WHomeHeartAndTempCell : UITableViewCell /// 容器View @property (weak, nonatomic) IBOutlet UIView *backView; @property (weak, nonatomic) IBOutlet UIImageView *backgroundImageView; /// 单位Label @property (weak, nonatomic) IBOutlet UILabel *unitLabel; @property (weak, nonatomic) IBOutlet UILabel *titleLabel; @property (weak, nonatomic) IBOutlet UIButton *activeBtn; @property (weak, nonatomic) IBOutlet UILabel *lastTimeLabel; @property (weak, nonatomic) IBOutlet UILabel *dataLabel; /// 设置数据 /// @param type 0:心率, 1:体温 /// @param data 数据 /// @param time 时间戳 - (void)setType:(int)type WithData:(NSString*)data LastTime:(NSNumber*)time; @end NS_ASSUME_NONNULL_END