// // 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)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