1234567891011121314151617181920212223 |
- //
- // RQExerciseVideoExplainCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/23.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCell.h"
- #import "RQExerciseVideoExplainItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseVideoExplainCell : 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
|