27 lines
574 B
Objective-C
27 lines
574 B
Objective-C
//
|
|
// XPMonentsContentView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/13.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MonentsInfoModel, XPMonentsContentView;
|
|
|
|
@protocol XPMonentsContentViewDelegate <NSObject>
|
|
|
|
///点击这折叠
|
|
- (void)xPMonentsContentView:(XPMonentsContentView *)view didClickFold:(MonentsInfoModel *)monentsInfo;
|
|
|
|
@end
|
|
|
|
@interface XPMonentsContentView : UIView
|
|
@property (nonatomic,strong) MonentsInfoModel *monentsInfo;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPMonentsContentViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|