16 lines
333 B
Objective-C
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
|