| 12345678910111213141516171819202122 |
- //
- // MOActivityCenterCell.h
- // KoKoLive
- //
- // Created by SuperC on 2024/10/11.
- //
- #define MOActivityCenterCell_ID @"MOActivityCenterCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOActivityCenterCell : UITableViewCell
- @property (nonatomic, strong) MOJumpList *cellModel;
- @property (nonatomic, copy) void(^cellClickBlock)(MOJumpList *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|