1234567891011121314151617181920212223 |
- //
- // RQExercisExplainCell.h
- // SDJK
- //
- // Created by 张嵘 on 2022/7/2.
- //
- #import "RQCommonCell.h"
- #import "RQExercisExplainItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExercisExplainCell : RQCommonCell
- @property (weak, nonatomic) IBOutlet UIImageView *tryLookCoverImageView;
- @property (weak, nonatomic) IBOutlet UIStackView *tryLookView;
- @property (weak, nonatomic) IBOutlet UIButton *openVipBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *tryLookBgImageView;
- @property (weak, nonatomic) IBOutlet UIStackView *tryLookBottomView;
- @property (weak, nonatomic) IBOutlet UILabel *tryLookLabel;
- @end
- NS_ASSUME_NONNULL_END
|