| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // MORedEnvelopeCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/6/9.
- //
- #define MORedEnvelopeCell_ID @"MORedEnvelopeCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MORedEnvelopeCell : UITableViewCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) UIImageView *bubbleImgView;
- @property (nonatomic, strong) MOMsgContentTextView *contentTextView;
- @property (nonatomic, strong) MORtmEntity *cellModel;
- /** 气泡的点击手势(可以根据需要将这个手势从视图中移除或禁止) */
- @property (nonatomic, strong, readonly) UITapGestureRecognizer *bubbleTapGestureRecognizer;
- /** 气泡的长按手势(可以根据需要将这个手势从视图中移除或禁止) */
- @property (nonatomic, strong, readonly) UILongPressGestureRecognizer *bubbleLongPressGestureRecognizer;
- /** cell 单击事件 */
- @property (nonatomic, copy) void(^cellTapBlock)(MORtmEntity *cellModel);
- /** cell 长按事件 */
- @property (nonatomic, copy) void(^cellLongPressBlock)(MORtmEntity *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|