RQHomePageViewModel.m 730 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // RQHomePageViewModel.m
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/21.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQHomePageViewModel.h"
  9. @implementation RQHomePageViewModel
  10. #pragma mark - Public Method
  11. - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
  12. if (self = [super initWithServices:services params:params]) {
  13. }
  14. return self;
  15. }
  16. - (void)initialize {
  17. [super initialize];
  18. self.title = @"新手驾到";
  19. /// 隐藏导航栏的细线
  20. self.prefersNavigationBarBottomLineHidden = YES;
  21. ///配置数据
  22. [self rq_configureData];
  23. }
  24. #pragma mark - ConfigureData
  25. - (void)rq_configureData {
  26. }
  27. @end