我有UILabel
使用归因字符串。我希望它的行高正好是字体大小的大小,而不是更大的像素。但是,正在添加顶部和底部填充。见下图:
这是我创建标签的代码。
NSDictionary *basicAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor], NSBackgroundColorAttributeName: [UIColor blueColor]};
NSMutableDictionary *attributes = [NSMutableDictionary dictionaryWithDictionary:basicAttributes];
UIFont *font = [UIFont fontWithName:@"AvenirNext-Regular" size:20.0];
[attributes setObject:font forKey:NSFontAttributeName];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineHeightMultiple = 1.0f;
[attributes setObject:paragraphStyle forKey:NSParagraphStyleAttributeName];
self.helloWorldLabel.attributedText = [[NSMutableAttributedString alloc] initWithString:@"Hola" attributes:attributes];
我在设置attributionText后尝试调用sizeToFit
但没有成功。
[self.helloWorldLabel sizeToFit];
我使用了NSMutableParagraphStyle
的其他属性,例如lineSpacing
但没有成功。
paragraphStyle.lineSpacing = 0.0f;
我错过了什么?
先谢谢
答案 0 :(得分:1)
检查link。没有100%的方法来正确设置框架以适合字母。您可以使用CoreText
计算归因字符串,例如使用CTFramesetterRef
CTFramesetterSuggestFrameSizeWithConstraints
,但这是更多的工作。
答案 1 :(得分:1)
听起来你想使用boundingRectWithSize:
这是一个如何使用它的简短例子。此代码将根据标签中的文本动态确定标签大小。如果内容需要溢出到多行,则设置约束大小允许最大大小。
NSString *text = [NSString stringWithFormat:@"Title Header:%@", value];
NSRange boldRange = [text rangeOfString:@"Title Header:"];
NSRange normalRange = [text rangeOfString:value];
NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] initWithString:text];
//Add attributes for appropriate ranges
[attributedText setAttributes:@{ NSFontAttributeName:[UIFont fontWithName:@"HelveticaNeue-Bold" size:13.0f]} range:boldRange];
[attributedText setAttributes:@{ NSFontAttributeName:[UIFont fontWithName:@"HelveticaNeue" size:13.0f]} range:normalRange];
//Determine rect for attributed text constrained within max values
CGRect textAttributedSize = [attributedText boundingRectWithSize:CGSizeMake(CellTitleWidth, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:NULL];
[self.myLabel setText:attributedText];
[self.myLabel setFrame:textAttributedSize];