| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MOGuildImageOrTextBaseCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/26.
- //
- #define MOGuildImageOrTextBaseCell_ID @"MOGuildImageOrTextBaseCell_ID" //复用id
- #import <UIKit/UIKit.h>
- 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
|