RQExercisExplainCell.h 644 B

1234567891011121314151617181920212223
  1. //
  2. // RQExercisExplainCell.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/7/2.
  6. //
  7. #import "RQCommonCell.h"
  8. #import "RQExercisExplainItemViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQExercisExplainCell : RQCommonCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *tryLookCoverImageView;
  12. @property (weak, nonatomic) IBOutlet UIStackView *tryLookView;
  13. @property (weak, nonatomic) IBOutlet UIButton *openVipBtn;
  14. @property (weak, nonatomic) IBOutlet UIImageView *tryLookBgImageView;
  15. @property (weak, nonatomic) IBOutlet UIStackView *tryLookBottomView;
  16. @property (weak, nonatomic) IBOutlet UILabel *tryLookLabel;
  17. @end
  18. NS_ASSUME_NONNULL_END