123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // RQHomePageModule.m
- // XinShouJiaDao
- //
- // Created by 张嵘 on 2021/7/9.
- // Copyright © 2021 JCZ. All rights reserved.
- //
- #import "RQHomePageModule.h"
- #pragma mark - 常量定义区
- CGFloat const RQTableHeaderViewHeight = 0.f;
- CGFloat const RQHeightForPinSectionHeaderInPagerView = 47.f;
- CGFloat const RQHeightForPinSectionHeaderInPagerView_One = 93.f;
- CGFloat const RQHeightForPinSectionHeaderInPagerView_Two = 50.f;
- CGFloat const RQHomeSubPageEditListToolBarHeight = 49.f;
- CGFloat const RQSimulationTestTopicsViewHeight = 259.f;
- CGFloat const RQSimulationResultsHeaderViewHeight = 231.f;
- /// 首页车型选项Key
- NSString * const RQHomePageCarTypeKey = @"RQHomePageCarTypeKey";
- /// 首页科目选项Key
- NSString * const RQHomePageSubjectTypeKey = @"RQHomePageSubjectTypeKey";
- /// 首页子页面类型Key
- NSString * const RQHomeSubPageTypeKey = @"RQHomeSubPageTypeKey";
- /// EditList类型Key
- NSString * const RQHomeSubEditListTypeKey = @"RQHomeSubEditListTypeKey";
- @interface RQHomePageModule ()
- @end
- @implementation RQHomePageModule
- static id rq_RQHomePageModule = nil;
- #pragma mark - init
- + (instancetype)sharedInstance {
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- rq_RQHomePageModule = [[self alloc] init];
- });
- return rq_RQHomePageModule;
- }
- - (instancetype)init {
- if (self = [super init]) {
- }
- return self;
- }
- #pragma mark - PublicMethods
- @end
|