123456789101112131415161718192021222324 |
- //
- // RQCommonGroupViewModel.m
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQCommonGroupViewModel.h"
- @implementation RQCommonGroupViewModel
- + (instancetype)groupViewModel {
- return [[self alloc] init];
- }
- - (instancetype)init {
- self = [super init];
- if (self) {
- _footerHeight = CGFLOAT_MIN;
- _headerHeight = CGFLOAT_MIN;
- }
- return self;
- }
- @end
|