// // MessageContentCustomView.h // xplan-ios // // Created by 冯硕 on 2022/4/15. // #import #import #import "AttachmentModel.h" #import "MessageContentProtocol.h" NS_ASSUME_NONNULL_BEGIN @protocol MessageContentCustomViewDelegate - (void)updateMessageSuccess:(NIMMessage *)message; ///查看点单信息 - (void)checkGameListInfo:(NIMMessage *)message; @end @interface MessageContentCustomView : UIView - (void)initSubViews; - (void)initSubViewConstraints; @property (nonatomic,strong, readonly) UIView * backView; ///代理 @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END