123456789101112131415161718192021222324 |
- //
- // RQVipAllFunctionItemViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/3/1.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQVipAllFunctionItemViewModel.h"
- @implementation RQVipAllFunctionItemViewModel
- - (instancetype)init{
- if (self = [super init]) {
- CGFloat RQVipAllFunctionCellWidth = RQ_SCREEN_WIDTH - (2 * 16);
- CGFloat RQVipAllFunctionCellHeight = RQVipAllFunctionCellWidth * (170.f / 375.f);
- self.itemSize = CGSizeMake(RQVipAllFunctionCellWidth, RQVipAllFunctionCellHeight);
- }
- return self;
- }
- - (NSString *)itemClassName {
- return @"RQVipAllFunctionCell";
- }
- @end
|