11

我有一个 NSString,我想知道它的高度以创建一个合适的 UILabel。

这样做

NSString *string = @"this is an example"; 
CGSize size = [string sizeWithFont:[UIFont systemFontOfSize:10.0f] 
                          forWidth:353.0 
                     lineBreakMode:UILineBreakModeWordWrap];
float height = size.height;

高度现在是 13.0。如果我使用这个字符串

NSString *string = @"this is an example this is an example this is an example 
                     this is an example this is an example this is an example 
                     this is an example this is an example this is an example 
                     this is an example this is an example this is an example 
                     this is an example this is an example this is an example 
                     this is an example "; 

高度始终为 13.0(宽度为 353,这是不可能的)......我做错了什么?

添加:

size.width;

工作正常......所以就像 lineBreakMode 不正确......但它是,不是吗?

4

2 回答 2

21

你正在做的事情不像你期望的那样工作的原因是因为

– sizeWithFont:forWidth:lineBreakMode: 

用于“计算单行文本的度量”,而

-sizeWithFont:constrainedToSize:lineBreakMode:

用于“计算多行文本的度量”。从文档中:

计算单行文本的度量

– sizeWithFont:
– sizeWithFont:forWidth:lineBreakMode:
– sizeWithFont:minFontSize:actualFontSize:forWidth:lineBreakMode:

计算多行文本的度量

– sizeWithFont:constrainedToSize:
– sizeWithFont:constrainedToSize:lineBreakMode:

尝试-sizeWithFont:constrainedToSize:lineBreakMode:改用,例如这是我通常做的:

CGSize maximumLabelSize = CGSizeMake(353,9999);

CGSize expectedLabelSize = [string sizeWithFont:label.font                        
                              constrainedToSize:maximumLabelSize 
                                  lineBreakMode:label.lineBreakMode]; 

CGRect newFrame = label.frame;
newFrame.size.height = expectedLabelSize.height;
label.frame = newFrame;
于 2011-08-05T21:12:32.627 回答
1

根据文档

此方法返回限制为指定宽度的字符串的宽度和高度。尽管它会计算出现换行符的位置,但此方法实际上并未将文本换行到其他行。如果字符串的大小超过给定的宽度,此方法会使用指定的换行模式截断文本(仅用于布局目的),直到它符合最大宽度;然后它返回生成的截断字符串的大小

您应该使用 -[NSString sizeWithFont:constrainedToSize:lineBreakMode:] ,它具有类似的行为,但您可以使用 CGFLOAT_MAX 作为传入大小的高度。

于 2011-08-05T21:29:11.903 回答