CommonSecFooterView.m 398 B

1234567891011121314151617181920212223
  1. //
  2. // CommonSecFooterView.m
  3. // LN_School
  4. //
  5. // Created by 张嵘 on 2019/7/9.
  6. // Copyright © 2019 Danson. All rights reserved.
  7. //
  8. #import "CommonSecFooterView.h"
  9. @implementation CommonSecFooterView
  10. #pragma mark - Life Cycle
  11. - (instancetype)initWithFrame:(CGRect)frame {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. self.backgroundColor = RQBackGroundColor;
  15. }
  16. return self;
  17. }
  18. @end