MOLanguageItemView.h 645 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // MOLanguageItemView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MOCountryBaseData.h"
  9. #import "MOCountryList.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOLanItemModel : NSObject
  12. /** 头像 */
  13. @property (nonatomic, copy) NSString *title;
  14. /** 选中状态 */
  15. @property (nonatomic, assign) BOOL choose;
  16. @end
  17. @interface MOLanguageItemView : UIView
  18. /** 标题 */
  19. @property (nonatomic, strong) UILabel *titleLab;
  20. /** 数据源 */
  21. @property (nonatomic, strong) NSMutableArray *dataArr;
  22. /** */
  23. @property (nonatomic, copy) void (^selectBlock)(MOCountryList *itemModel);
  24. @end
  25. NS_ASSUME_NONNULL_END