30 lines
593 B
Objective-C
30 lines
593 B
Objective-C
//
|
|
// XPMomentTopicHeaderView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MonentsTopicModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPMomentTopicHeaderViewDelegate <NSObject>
|
|
/// 点击了主题
|
|
- (void)momentTopicHeaderViewClickTopic:(MonentsTopicModel *)topicModel;
|
|
|
|
@end
|
|
|
|
@interface XPMomentTopicHeaderView : UIView
|
|
/// 主题列表
|
|
@property (nonatomic, strong) NSArray *topicList;
|
|
|
|
@property (nonatomic, weak) id<XPMomentTopicHeaderViewDelegate> delegate;
|
|
/// 获取头部高度
|
|
+ (CGFloat)getTopicHeaderViewHeight;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|