2022-05-13 11:32:35 +08:00
|
|
|
//
|
|
|
|
// XPMonentsContentView.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2022/5/13.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2022-08-25 21:17:23 +08:00
|
|
|
@class MonentsInfoModel, XPMonentsContentView;
|
|
|
|
|
|
|
|
@protocol XPMonentsContentViewDelegate <NSObject>
|
|
|
|
|
|
|
|
///点击这折叠
|
|
|
|
- (void)xPMonentsContentView:(XPMonentsContentView *)view didClickFold:(MonentsInfoModel *)monentsInfo;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2022-05-13 11:32:35 +08:00
|
|
|
@interface XPMonentsContentView : UIView
|
|
|
|
@property (nonatomic,strong) MonentsInfoModel *monentsInfo;
|
2022-08-25 21:17:23 +08:00
|
|
|
///代理
|
|
|
|
@property (nonatomic,weak) id<XPMonentsContentViewDelegate> delegate;
|
2022-05-13 11:32:35 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|