BreathTextView.m
956 字节
//
// BreathTextView.m
// DreamSleep
//
// Created by peter on 2022/4/15.
//
#import "BreathTextView.h"
@implementation BreathTextView
- (instancetype)initWithFrame:(CGRect)frame style:(LottieStyle)style {
if (self = [super initWithFrame:frame]) {
NSString *text = style == LottieStyleBalance ? @"适用于平复情绪,缓解压力\n\n• 鼻吸气4秒\n\n• 嘴吐气7秒" : @"每天睡前使用2分钟,放松身心快速入睡\n\n• 鼻吸气4秒\n\n• 憋气7秒\n\n• 嘴吐气8秒";
CGFloat height = [NSString getHeightWithText:text withFont:SysFont(14.0) withMaxWidth:self.width];
UILabel *lab = [UILabel labWithText:text textColor:ColorFromHex(0x5A6073) font:SysFont(14.0)];
lab.numberOfLines = 0;
lab.textAlignment = NSTextAlignmentCenter;
lab.frame = CGRectMake(0, 0, self.width, height);
[self addSubview:lab];
self.height = height;
}
return self;
}
@end