23 lines
494 B
Objective-C
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
|