MOSelectPartitionCell.h 524 B

123456789101112131415161718192021222324252627
  1. //
  2. // MOSelectPartitionCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/16.
  6. //
  7. #define MOSelectPartitionCell_ID @"MOSelectPartitionCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOCountryList.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOSelectPartitionCell : UITableViewCell
  12. @property (nonatomic, strong) UIImageView *iconImg;
  13. @property (nonatomic, strong) UILabel *titleLab;
  14. @property (nonatomic, strong) UILabel *numLab;
  15. @property (nonatomic, strong) MOCountryList *model;
  16. @end
  17. NS_ASSUME_NONNULL_END