MOGuildStartCell.h 654 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOGuildStartCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/25.
  6. //
  7. #define MOGuildStartCell_ID @"MOGuildStartCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOGuildDataModels.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOGuildStartCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIView *bgView;
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconImg;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleNameLab;
  15. @property (weak, nonatomic) IBOutlet UIImageView *countryImg;
  16. @property (weak, nonatomic) IBOutlet UIButton *anchorNumBtn;
  17. @property (nonatomic, strong) MOGuildBase *model;
  18. @end
  19. NS_ASSUME_NONNULL_END