MOGuildImageOrTextBaseCell.h 705 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // MOGuildImageOrTextBaseCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/26.
  6. //
  7. #define MOGuildImageOrTextBaseCell_ID @"MOGuildImageOrTextBaseCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, MOGuildBaseCellType)
  10. {
  11. MOGuildOnlyTextCellType,
  12. MOGuildCountryImageCellType,
  13. MOGuildAvatarCellType
  14. };
  15. NS_ASSUME_NONNULL_BEGIN
  16. @interface MOGuildImageOrTextBaseCell : UITableViewCell
  17. @property (weak, nonatomic) IBOutlet UILabel *titleLab;
  18. /** 内容按钮 */
  19. @property (nonatomic, strong) BigBtn *contantBtn;
  20. @property (nonatomic, assign) MOGuildBaseCellType cellType;
  21. @property (nonatomic, copy) void (^itemBtnClick)(void);
  22. @end
  23. NS_ASSUME_NONNULL_END