Files
peko-ios/YuMi/Modules/YMMonents/View/SubViews/XPMoentsTopicListView.h
2023-07-14 18:50:55 +08:00

23 lines
494 B
Objective-C

//
// YMMoentsTopicListView.h
// YUMI
//
// Created by YUMI on 2022/8/16.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMoentsTopicListView, MonentsTopicModel;
@protocol XPMoentsTopicListViewDelegate <NSObject>
- (void)xPMoentsTopicListView:(XPMoentsTopicListView *)view didSelectItem:(MonentsTopicModel *)topicInfo;
@end
@interface XPMoentsTopicListView : UIView
///代理
@property (nonatomic,weak) id<XPMoentsTopicListViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END