RQSimulateExamBeginItemViewModel.m 550 B

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