- 新增健康知识视图(标签切换+搜索+列表)和健康资讯视图(纯列表无搜索) - 对接健康栏目列表和文章分页接口,资讯无子分类直接用父级ID - 接入更多/搜索/详情H5跳转,统一用通用加密串传参 - 键盘弹起时自动避让,从H5回来刷新文章收藏数 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
21 lines
308 B
Objective-C
21 lines
308 B
Objective-C
//
|
|
// XJHealthNewsCell.h
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2026/6/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class XJHealthKnowledgeModel;
|
|
|
|
@interface XJHealthNewsCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) XJHealthKnowledgeModel * model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|