123456789101112131415161718192021222324252627282930313233343536 |
- //
- // RQHoursBeforeExamHomeViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/6/21.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHoursBeforeExamHomeViewModel.h"
- @implementation RQHoursBeforeExamHomeViewModel
- #pragma mark - Public Method
- - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
- if (self = [super initWithServices:services params:params]) {
-
- }
- return self;
- }
- - (void)initialize {
- [super initialize];
-
- self.title = @"考前秘卷";
- /// 隐藏导航栏的细线
- self.prefersNavigationBarBottomLineHidden = YES;
- self.prefersNavigationBarHidden = YES;
-
- ///配置数据
- [self rq_configureData];
- }
- #pragma mark - PrivateMethod
- - (void)rq_configureData {
-
- }
- @end
|