| 123456789101112131415161718192021222324252627282930 |
- //
- // MOGuildStartCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/25.
- //
- #define MOGuildStartCell_ID @"MOGuildStartCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOGuildDataModels.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGuildStartCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UIImageView *iconImg;
- @property (weak, nonatomic) IBOutlet UILabel *titleNameLab;
- @property (weak, nonatomic) IBOutlet UIImageView *countryImg;
- @property (weak, nonatomic) IBOutlet UIButton *anchorNumBtn;
- @property (nonatomic, strong) MOGuildBase *model;
- @end
- NS_ASSUME_NONNULL_END
|