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