| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MOLanguageItemView.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/9.
- //
- #import <UIKit/UIKit.h>
- #import "MOCountryBaseData.h"
- #import "MOCountryList.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLanItemModel : NSObject
- /** 头像 */
- @property (nonatomic, copy) NSString *title;
- /** 选中状态 */
- @property (nonatomic, assign) BOOL choose;
- @end
- @interface MOLanguageItemView : UIView
- /** 标题 */
- @property (nonatomic, strong) UILabel *titleLab;
- /** 数据源 */
- @property (nonatomic, strong) NSMutableArray *dataArr;
- /** */
- @property (nonatomic, copy) void (^selectBlock)(MOCountryList *itemModel);
- @end
- NS_ASSUME_NONNULL_END
|