YMMineCommonFunctionsTwoView.h 773 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YMMineCommonFunctionsTwoView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/15.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. #import "YMBaseTableViewCell.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMMineCommonFunctionsTwoView : YMBaseView
  12. @end
  13. typedef void(^CommonFunctionsBlock)(YMCommonFunctionsType functionsType);
  14. @interface YMCommonFunctionsListCell : YMBaseTableViewCell
  15. /// 功能图标
  16. @property (nonatomic, strong) UIView *bgv;
  17. /// 功能图标
  18. @property (nonatomic, strong) UIImageView *functionsIcon;
  19. /// 功能标签
  20. @property (nonatomic, strong) UILabel *functionsLb;
  21. /// 开关按钮
  22. @property (nonatomic, strong) UIButton *switchBtn;
  23. @property (nonatomic, copy) CommonFunctionsBlock callBlock;
  24. @end
  25. NS_ASSUME_NONNULL_END