123456789101112131415161718192021222324 |
- //
- // YOUPAILZLiveChatMessageCell.h
- // TIANYAN
- //
- // Created by CY on 2021/5/11.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZChatRoomGiftAttachment.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveChatMessageCell : UITableViewCell
- @property (nonatomic, copy) void (^showUserInfoBlock)(NSIndexPath *indexPath);
- @property (nonatomic, copy) void (^youpaipreplyBlock)(NSIndexPath *indexPath);
- - (void)youpaifreloadWithModel:(NIMMessage *)message font:(UIFont *)font indexPath:(NSIndexPath *)indexPath;
- - (void)youpaifreloadWithAttachment:(YOUPAILZChatRoomGiftAttachment *)attachment font:(UIFont *)font indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|