// // RQPlaceDetailNoteIntroduceItemViewModel.m // JiaPei // // Created by 张嵘 on 2023/4/20. // #import "RQPlaceDetailNoteIntroduceItemViewModel.h" @implementation RQPlaceDetailNoteIntroduceItemViewModel - (instancetype)init { if (self = [super init]) { CGFloat width = RQ_SCREEN_WIDTH - 64; self.rowHeight = (width * (367.f / 302.f)) + 16.f; } return self; } - (NSString *)itemClassName { return @"RQPlaceDetailNoteIntroduceCell"; } @end