1234567891011121314151617181920212223242526 |
- //
- // RQExerciseSituationItemViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/8/2.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQExerciseSituationItemViewModel.h"
- @implementation RQExerciseSituationItemViewModel
- /// init
- - (instancetype)init {
- if (self = [super init]) {
- self.rowHeight = RQ_FIT_HORIZONTAL(125.f) + 10.f + 5.f;
- self.operation = ^{
-
- };
- }
- return self;
- }
- - (NSString *)itemClassName {
- return @"RQExerciseSituationCell";
- }
- @end
|