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