12345678910111213141516171819202122232425262728293031 |
- //
- // YMMineCommonFunctionsTwoView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- #import "YMBaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMMineCommonFunctionsTwoView : YMBaseView
- @end
- typedef void(^CommonFunctionsBlock)(YMCommonFunctionsType functionsType);
- @interface YMCommonFunctionsListCell : YMBaseTableViewCell
- /// 功能图标
- @property (nonatomic, strong) UIView *bgv;
- /// 功能图标
- @property (nonatomic, strong) UIImageView *functionsIcon;
- /// 功能标签
- @property (nonatomic, strong) UILabel *functionsLb;
- /// 开关按钮
- @property (nonatomic, strong) UIButton *switchBtn;
- @property (nonatomic, copy) CommonFunctionsBlock callBlock;
- @end
- NS_ASSUME_NONNULL_END
|