Files
yinmeng-ios/xplan-ios/Main/Monents/View/SubViews/XPMonentsPublishTopicView.h
2022-08-26 21:42:05 +08:00

28 lines
732 B
Objective-C

//
// XPMonentsPublishTopicView.h
// xplan-ios
//
// Created by 冯硕 on 2022/8/16.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMonentsPublishTopicView, MonentsTopicModel;
@protocol XPMonentsPublishTopicViewDelegate <NSObject>
///选择了关闭按钮
- (void)xPMonentsPublishTopicView:(XPMonentsPublishTopicView *)view didClickCloseButton:(UIButton *)sender;
///选择话题
- (void)xPMonentsPublishTopicView:(XPMonentsPublishTopicView *)view didClickChooseTopic:(UIButton *)sender;
@end
@interface XPMonentsPublishTopicView : UIView
///代理
@property (nonatomic,weak) id<XPMonentsPublishTopicViewDelegate> delegate;
@property (nonatomic,strong) MonentsTopicModel *topicInfo;
@end
NS_ASSUME_NONNULL_END