YOUPAILZLiveChatMessageCell.h 721 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAILZLiveChatMessageCell.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/11.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZChatRoomGiftAttachment.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZLiveChatMessageCell : UITableViewCell
  12. @property (nonatomic, copy) void (^showUserInfoBlock)(NSIndexPath *indexPath);
  13. @property (nonatomic, copy) void (^youpaipreplyBlock)(NSIndexPath *indexPath);
  14. - (void)youpaifreloadWithModel:(NIMMessage *)message font:(UIFont *)font indexPath:(NSIndexPath *)indexPath;
  15. - (void)youpaifreloadWithAttachment:(YOUPAILZChatRoomGiftAttachment *)attachment font:(UIFont *)font indexPath:(NSIndexPath *)indexPath;
  16. @end
  17. NS_ASSUME_NONNULL_END