123456789101112131415161718192021222324252627282930313233343536 |
- //
- // RQChooseExLibViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/21.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQChooseExLibViewModel.h"
- @interface RQChooseExLibViewModel ()
- @property (nonatomic, readwrite, assign) BOOL isFirstLoad;
- @end
- @implementation RQChooseExLibViewModel
- #pragma mark - Public Method
- - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
- if (self = [super initWithServices:services params:params]) {
- self.isFirstLoad = RQObjectIsNil(params[RQViewCommonValueKey])? NO : [params[RQViewCommonValueKey] boolValue];
- }
- return self;
- }
- - (void)initialize {
- [super initialize];
-
- self.title = @"选择题库";
- ///配置数据
- [self rq_configureData];
- }
- #pragma mark - PrivateMethod
- - (void)rq_configureData {
- }
- @end
|