24 lines
497 B
Objective-C
24 lines
497 B
Objective-C
//
|
||
// XJHomeWatchCollectionViewCell.h
|
||
// XinjiangProject
|
||
//
|
||
// Created by Apple on 2026/3/2.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface XJHomeWatchCollectionViewCell : UICollectionViewCell
|
||
|
||
/// 设置数据模型(id 兼容 HomePageV2WATACHModel)
|
||
- (void)configureWithData:(nullable id)data;
|
||
|
||
/// 父 View Tab 切换时调用,更新展示类型
|
||
/// 0=心率 1=血氧 2=压力 3=体温 4=睡眠
|
||
- (void)updateTabIndex:(NSInteger)tabIndex;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|