| 123456789101112131415161718192021222324252627 |
- //
- // MOSelectPartitionCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/16.
- //
- #define MOSelectPartitionCell_ID @"MOSelectPartitionCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOCountryList.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOSelectPartitionCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconImg;
- @property (nonatomic, strong) UILabel *titleLab;
- @property (nonatomic, strong) UILabel *numLab;
- @property (nonatomic, strong) MOCountryList *model;
- @end
- NS_ASSUME_NONNULL_END
|