You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
898 B
42 lines
898 B
1 year ago
|
//
|
||
|
// WHomeHeartAndTempCell.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by Apple on 2020/4/8.
|
||
|
// Copyright © 2020 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
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
|