1234567891011121314151617181920212223 |
- //
- // CommonSecFooterView.m
- // LN_School
- //
- // Created by 张嵘 on 2019/7/9.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import "CommonSecFooterView.h"
- @implementation CommonSecFooterView
- #pragma mark - Life Cycle
- - (instancetype)initWithFrame:(CGRect)frame {
- self = [super initWithFrame:frame];
- if (self) {
- self.backgroundColor = RQBackGroundColor;
- }
- return self;
- }
- @end
|