我试图在线搜索,但没有找到我的问题的明确答案,所以我来征求你的专家意见。我有一个带有2个标签的视图。第一个标签用于显示名称的缩写,2-3个字母。第二个标签显示全名。
我有的问题是,是否有办法根据给定的字体类型,大小和字符串长度动态调整标签大小?我问,因为我希望第二个标签靠近第一个标签,两者之间没有太多的空白区域,或者没有第一个标签与第二个标签重叠。
这不是一个标签的原因是因为第一个标签应该有更大的字体和不同的配色方案,然后是第二个标签。
非常感谢任何建议。
答案 0 :(得分:64)
您可以计算字符串的大小,然后将UILabel的框架设置为该大小,请参阅以下代码作为示例 -
//Calculate the expected size based on the font and linebreak mode of your label
CGSize maximumLabelSize = CGSizeMake(296,9999);
CGSize expectedLabelSize = [yourString sizeWithFont:yourLabel.font
constrainedToSize:maximumLabelSize
lineBreakMode:yourLabel.lineBreakMode];
//adjust the label the the new height.
CGRect newFrame = yourLabel.frame;
newFrame.size.height = expectedLabelSize.height;
yourLabel.frame = newFrame;
更新 -
改为使用sizeWithAttributes:
,现在需要NSDictionary
。使用密钥UITextAttributeFont
和您的字体对象传递一对:
CGSize size = [string sizeWithAttributes:
@{NSFontAttributeName:
[UIFont systemFontOfSize:17.0f]}];
答案 1 :(得分:16)
这也将起到作用,并将考虑属性文本
label.attributedText = attrString;
CGSize maximumLabelSize = CGSizeMake(187,CGFLOAT_MAX);
CGSize requiredSize = [label sizeThatFits:maximumLabelSize];
CGRect labelFrame = label.frame;
labelFrame.size.height = requiredSize.height;
label.frame = labelFrame;
答案 2 :(得分:10)
'sizeWithFont:'已弃用:首先在iOS 7.0中弃用。
所以请尝试sizeWithAttributes
- (void)viewDidLoad
{
[super viewDidLoad];
label = [[UILabel alloc] initWithFrame:CGRectMake(20, 40, 300, 20)];
label.backgroundColor = [UIColor blueColor];
const CGFloat fontSize = 30;
UIFont *regularFont = [UIFont systemFontOfSize:fontSize];
UIColor *foregroundColor = [UIColor blackColor];
attrs = [NSDictionary dictionaryWithObjectsAndKeys:
regularFont, NSFontAttributeName,
foregroundColor, NSForegroundColorAttributeName
, nil];
NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc]
initWithString:@"Test Text"
attributes:attrs];
[label setAttributedText:attributedText];
[self.view addSubview:label];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CGSize expectedLabelSize = [label.text sizeWithAttributes:attrs]; // iOS 7 Code <--
CGRect newFrame = label.frame;
newFrame.size.width = expectedLabelSize.width;
label.frame = newFrame;
NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc]
initWithString:@"Longer Test Text"
attributes:attrs];
[label setAttributedText:attributedText];
}
答案 3 :(得分:8)
由于iOS 7中不推荐使用 sizeWithFont:
,您需要使用sizeWithAttributes
(正如maver解释here)。为了简化代码,您可以添加一个可以重复使用的方法:
-(CGRect)rectForText:(NSString *)text
usingFont:(UIFont *)font
boundedBySize:(CGSize)maxSize
{
NSAttributedString *attrString =
[[NSAttributedString alloc] initWithString:text
attributes:@{ NSFontAttributeName:font}];
return [attrString boundingRectWithSize:maxSize
options:NSStringDrawingUsesLineFragmentOrigin
context:nil];
}
并利用它
CGSize maximumLabelSize = CGSizeMake(280,9999);
UIFont *font = [UIFont systemFontOfSize:20];
CGRect titleRect = [self rectForText:post.title // <- your text here
usingFont:font
boundedBySize:maximumLabelSize];
答案 4 :(得分:7)
除了Saurabh的回答。我遇到了同样的问题,你应该添加这一行
[yourLabel setNumberOfLines:0];
,以便整行文字以X行显示。