Files
xj-ios/XinjiangProject/XinjiangProject/Project/HomeV2/View/XJHomeWatchCollectionViewCell.h
T
2026-03-03 18:12:00 +08:00

24 lines
497 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// 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