YMMineCommonFunctionsTwoView.h 560 B

123456789101112131415161718192021222324
  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. @property (nonatomic, copy) CommonFunctionsBlock callBlock;
  18. @end
  19. NS_ASSUME_NONNULL_END