1234567891011121314151617181920212223242526272829303132333435 |
- //
- // RQHomePageViewModel.m
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/21.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQHomePageViewModel.h"
- @implementation RQHomePageViewModel
- #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 rq_configureData];
- }
- #pragma mark - ConfigureData
- - (void)rq_configureData {
-
- }
- @end
|