1234567891011121314151617181920212223242526272829 |
- //
- // NYLIVipHeaderImageViewGroupModel.m
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/5.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import "NYLIVipHeaderImageViewGroupModel.h"
- @interface NYLIVipHeaderImageViewGroupModel ()
- @property (nonatomic, readwrite, strong) RQVideoVipModel *videoVipModel;
- @property (nonatomic, readwrite, strong) NSString *headerImageName;
- @end
- @implementation NYLIVipHeaderImageViewGroupModel
- /// init
- - (instancetype)initWithRQVideoVipModel:(RQVideoVipModel *)videoVipModel chooseTypeModel:(RQTypeModel *)chooseTypeModel {
- if (self = [super init]) {
- self.videoVipModel = videoVipModel;
- self.headerHeight = RQ_FIT_HORIZONTAL(306.f) + 33.f;
- self.footerHeight = CGFLOAT_MIN;
-
- }
- return self;
- }
- @end
|