RQCommonGroupViewModel.m 424 B

123456789101112131415161718192021222324
  1. //
  2. // RQCommonGroupViewModel.m
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQCommonGroupViewModel.h"
  9. @implementation RQCommonGroupViewModel
  10. + (instancetype)groupViewModel {
  11. return [[self alloc] init];
  12. }
  13. - (instancetype)init {
  14. self = [super init];
  15. if (self) {
  16. _footerHeight = CGFLOAT_MIN;
  17. _headerHeight = CGFLOAT_MIN;
  18. }
  19. return self;
  20. }
  21. @end