// // MOGuildImageOrTextBaseCell.h // MiMoLive // // Created by SuperC on 2023/10/26. // #define MOGuildImageOrTextBaseCell_ID @"MOGuildImageOrTextBaseCell_ID" //复用id #import typedef NS_ENUM(NSUInteger, MOGuildBaseCellType) { MOGuildOnlyTextCellType, MOGuildCountryImageCellType, MOGuildAvatarCellType }; NS_ASSUME_NONNULL_BEGIN @interface MOGuildImageOrTextBaseCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *titleLab; /** 内容按钮 */ @property (nonatomic, strong) BigBtn *contantBtn; @property (nonatomic, assign) MOGuildBaseCellType cellType; @property (nonatomic, copy) void (^itemBtnClick)(void); @end NS_ASSUME_NONNULL_END