RQExerciseSituationItemViewModel.m 519 B

1234567891011121314151617181920212223242526
  1. //
  2. // RQExerciseSituationItemViewModel.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/2.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQExerciseSituationItemViewModel.h"
  9. @implementation RQExerciseSituationItemViewModel
  10. /// init
  11. - (instancetype)init {
  12. if (self = [super init]) {
  13. self.rowHeight = RQ_FIT_HORIZONTAL(125.f) + 10.f + 5.f;
  14. self.operation = ^{
  15. };
  16. }
  17. return self;
  18. }
  19. - (NSString *)itemClassName {
  20. return @"RQExerciseSituationCell";
  21. }
  22. @end