NSString sizeWithFont使用字体Georgia返回错误的值

时间:2014-02-04 15:29:12

标签: ios nsstring uilabel

我在我的应用中使用Georgia和Georgia-Bold字体。因为它必须显示我从服务器下载的大量文本数据,所以我使用NSString的方法sizeWithFont:constrainedToSize:lineBreakMode:广泛应用于应用程序的各个位置。问题是,它返回的值不是很正确,y,j和g之类的字母在底部被剪切。正如您在此图片中看到的那样

enter image description here

最后一行中的所有“j”都不适合标签。是一些已知的sizeWithFont错误:constrainedToSize:lineBreakMode:?更重要的是,有没有办法解决这个问题,而不是总是在标签的高度上添加2个像素?

这是我设置标签尺寸的行:

answerLabel.frame = CGRectMake(15, bottomOfRect(questionLabel.frame) + 10, frame.size.width - 45, [answer sizeWithFont:answerLabel.font constrainedToSize:CGSizeMake(frame.size.width - 45, CGFLOAT_MAX) lineBreakMode:NSLineBreakByWordWrapping].height);

我仔细检查以确保标签不在其超级视图的范围之外。

我的目标是iOS 6和7。

2 个答案:

答案 0 :(得分:2)

请改用boundingRectWithSize:options:attributes:context:。 查看此帖子了解更多详情:deprecated in iOS 7 “ sizeWithFont: constrainedToSize: lineBreakMode: ” how can I replacement?

答案 1 :(得分:2)

试试这个:

answerLabel.frame = CGRectMake(15, bottomOfRect(questionLabel.frame) + 10, frame.size.width - 45, ceilf([answer sizeWithFont:answerLabel.font constrainedToSize:CGSizeMake(frame.size.width - 45, CGFLOAT_MAX) lineBreakMode:NSLineBreakByWordWrapping].height));

问题是,sizeWithFont:constrainedToSize:lineBreakMode:和较新的boundingRectWithSize:options:attributes:context都返回非整数大小,您需要将它们四舍五入为整数或发生轻微剪裁,因此请使用{{1} }