Files
yinmeng-ios/xplan-ios/Main/Message/View/Session/Content/MessageContentCustomView.h
2023-08-31 17:50:20 +08:00

31 lines
708 B
Objective-C

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