Files
peko-ios/YuMi/Modules/YMMessage/Model/MSSessionScrollingModel.m
2024-05-10 14:12:47 +08:00

16 lines
333 B
Objective-C

//
// MSSessionScrollingModel.m
// YuMi
//
// Created by duoban on 2024/5/6.
//
#import "MSSessionScrollingModel.h"
@implementation MSSessionScrollingModel
-(void)setContent:(NSString *)content{
_content = content;
_width = [UILabel getWidthWithText:_content height:kGetScaleWidth(11.5) font:kFontMedium(12)] + 5;
}
@end