// // XPMonentsTooBarView.h // xplan-ios // // Created by 冯硕 on 2022/5/12. // #import NS_ASSUME_NONNULL_BEGIN @class MonentsInfoModel, XPMonentsTooBarView; @protocol XPMonentsTooBarViewDelegate ///点赞 - (void)xPMonentsTooBarView:(XPMonentsTooBarView *)view didClickLike:(MonentsInfoModel *)monentsInfo; ///删除 - (void)xPMonentsTooBarView:(XPMonentsTooBarView *)view didClickDelete:(MonentsInfoModel *)monentsInfo; @end @interface XPMonentsTooBarView : UIView @property (nonatomic,strong) MonentsInfoModel *monentsInfo; ///代理 @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END