Answers:
使用sizeWithAttributes:
代替,现在需要一个NSDictionary
。UITextAttributeFont
像这样传递带有key 和您的字体对象的对:
CGSize size = [string sizeWithAttributes:
@{NSFontAttributeName: [UIFont systemFontOfSize:17.0f]}];
// Values are fractional -- you should take the ceilf to get equivalent values
CGSize adjustedSize = CGSizeMake(ceilf(size.width), ceilf(size.height));
boundingRectWithSize:options:attributes:context:
,您可以使用传递CGSizeMake(250.0f, CGFLOAT_MAX)
。
我认为该函数已被弃用,因为该系列NSString+UIKit
函数(sizewithFont:...
,等)基于UIStringDrawing
库,这不是线程安全的。如果您尝试不在主线程上运行它们(像其他任何UIKit
功能一样),则会出现无法预测的行为。特别是,如果您同时在多个线程上运行该函数,则可能会使您的应用程序崩溃。这就是为什么在iOS 6中,他们引入了的boundingRectWithSize:...
方法NSAttributedString
。它建立在NSStringDrawing
库的顶部,并且是线程安全的。
如果您查看新NSString
boundingRectWithSize:...
函数,它将以与相同的方式请求属性数组NSAttributeString
。如果我不得不猜测,NSString
iOS 7中的这个新功能仅仅是NSAttributeString
iOS 6中该功能的包装。
需要注意的是,如果您仅支持iOS 6和iOS 7,那么我肯定会将所有更改NSString
sizeWithFont:...
为NSAttributeString
boundingRectWithSize
。如果您碰巧有一个奇怪的多线程转角保护套,它将为您节省很多头痛!这是我的转换方式NSString
sizeWithFont:constrainedToSize:
:
过去是:
NSString *text = ...;
CGFloat width = ...;
UIFont *font = ...;
CGSize size = [text sizeWithFont:font
constrainedToSize:(CGSize){width, CGFLOAT_MAX}];
可以替换为:
NSString *text = ...;
CGFloat width = ...;
UIFont *font = ...;
NSAttributedString *attributedText =
[[NSAttributedString alloc] initWithString:text
attributes:@{NSFontAttributeName: font}];
CGRect rect = [attributedText boundingRectWithSize:(CGSize){width, CGFLOAT_MAX}
options:NSStringDrawingUsesLineFragmentOrigin
context:nil];
CGSize size = rect.size;
请注意文档中提到的内容:
在iOS 7及更高版本中,此方法返回小数大小(以return的大小组成
CGRect
);要使用返回的大小调整视图大小,必须使用ceil函数将其值提高到最接近的较大整数。
因此,要拉出计算出的高度或宽度以用于调整视图大小,我将使用:
CGFloat height = ceilf(size.height);
CGFloat width = ceilf(size.width);
正如您sizeWithFont
在Apple Developer网站上看到的那样,它已被弃用,因此我们需要使用sizeWithAttributes
。
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
NSString *text = @"Hello iOS 7.0";
if (SYSTEM_VERSION_LESS_THAN(@"7.0")) {
// code here for iOS 5.0,6.0 and so on
CGSize fontSize = [text sizeWithFont:[UIFont fontWithName:@"Helvetica"
size:12]];
} else {
// code here for iOS 7.0
CGSize fontSize = [text sizeWithAttributes:
@{NSFontAttributeName:
[UIFont fontWithName:@"Helvetica" size:12]}];
}
[NSObject respondsToSelector:]
方法:stackoverflow.com/a/3863039/1226304
我创建了一个类别来处理此问题,这里是:
#import "NSString+StringSizeWithFont.h"
@implementation NSString (StringSizeWithFont)
- (CGSize) sizeWithMyFont:(UIFont *)fontToUse
{
if ([self respondsToSelector:@selector(sizeWithAttributes:)])
{
NSDictionary* attribs = @{NSFontAttributeName:fontToUse};
return ([self sizeWithAttributes:attribs]);
}
return ([self sizeWithFont:fontToUse]);
}
这样,您只需要查找/替换sizeWithFont:
用sizeWithMyFont:
,你是好去。
在iOS7中,我需要逻辑来为tableview:heightForRowAtIndexPath方法返回正确的高度,但是无论字符串长度如何,sizeWithAttributes始终返回相同的高度,因为它不知道将其放置在固定宽度的表格单元格中。我发现这对我来说非常有用,并考虑到表格单元格的宽度来计算正确的高度!这是基于上面T先生的回答。
NSString *text = @"The text that I want to wrap in a table cell."
CGFloat width = tableView.frame.size.width - 15 - 30 - 15; //tableView width - left border width - accessory indicator - right border width
UIFont *font = [UIFont systemFontOfSize:17];
NSAttributedString *attributedText = [[NSAttributedString alloc] initWithString:text attributes:@{NSFontAttributeName: font}];
CGRect rect = [attributedText boundingRectWithSize:(CGSize){width, CGFLOAT_MAX}
options:NSStringDrawingUsesLineFragmentOrigin
context:nil];
CGSize size = rect.size;
size.height = ceilf(size.height);
size.width = ceilf(size.width);
return size.height + 15; //Add a little more padding for big thumbs and the detailText label
使用动态高度的多行标签可能需要其他信息才能正确设置尺寸。您可以将sizeWithAttributes与UIFont和NSParagraphStyle一起使用,以指定字体和换行模式。
您将定义段落样式并使用NSDictionary,如下所示:
// set paragraph style
NSMutableParagraphStyle *style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[style setLineBreakMode:NSLineBreakByWordWrapping];
// make dictionary of attributes with paragraph style
NSDictionary *sizeAttributes = @{NSFontAttributeName:myLabel.font, NSParagraphStyleAttributeName: style};
// get the CGSize
CGSize adjustedSize = CGSizeMake(label.frame.size.width, CGFLOAT_MAX);
// alternatively you can also get a CGRect to determine height
CGRect rect = [myLabel.text boundingRectWithSize:adjustedSize
options:NSStringDrawingUsesLineFragmentOrigin
attributes:sizeAttributes
context:nil];
如果要查找高度,可以将CGSize'adjustedSize'或CGRect用作rect.size.height属性。
有关NSParagraphStyle的更多信息,请访问:https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSParagraphStyle_Class/Reference/Reference.html
// max size constraint
CGSize maximumLabelSize = CGSizeMake(184, FLT_MAX)
// font
UIFont *font = [UIFont fontWithName:TRADE_GOTHIC_REGULAR size:20.0f];
// set paragraph style
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
// dictionary of attributes
NSDictionary *attributes = @{NSFontAttributeName:font,
NSParagraphStyleAttributeName: paragraphStyle.copy};
CGRect textRect = [string boundingRectWithSize: maximumLabelSize
options:NSStringDrawingUsesLineFragmentOrigin
attributes:attributes
context:nil];
CGSize expectedLabelSize = CGSizeMake(ceil(textRect.size.width), ceil(textRect.size.height));
创建一个采用UILabel实例的函数。并返回CGSize
CGSize constraint = CGSizeMake(label.frame.size.width , 2000.0);
// Adjust according to requirement
CGSize size;
if([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0){
NSRange range = NSMakeRange(0, [label.attributedText length]);
NSDictionary *attributes = [label.attributedText attributesAtIndex:0 effectiveRange:&range];
CGSize boundingBox = [label.text boundingRectWithSize:constraint options: NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size;
size = CGSizeMake(ceil(boundingBox.width), ceil(boundingBox.height));
}
else{
size = [label.text sizeWithFont:label.font constrainedToSize:constraint lineBreakMode:label.lineBreakMode];
}
return size;
tableView.estimatedRowHeight = 68.0 tableView.rowHeight = UITableViewAutomaticDimension
替代解决方案-
CGSize expectedLabelSize;
if ([subTitle respondsToSelector:@selector(sizeWithAttributes:)])
{
expectedLabelSize = [subTitle sizeWithAttributes:@{NSFontAttributeName:subTitleLabel.font}];
}else{
expectedLabelSize = [subTitle sizeWithFont:subTitleLabel.font constrainedToSize:subTitleLabel.frame.size lineBreakMode:NSLineBreakByWordWrapping];
}
基于@bitsand,这是我刚刚添加到我的NSString + Extras类别中的新方法:
- (CGRect) boundingRectWithFont:(UIFont *) font constrainedToSize:(CGSize) constraintSize lineBreakMode:(NSLineBreakMode) lineBreakMode;
{
// set paragraph style
NSMutableParagraphStyle *style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[style setLineBreakMode:lineBreakMode];
// make dictionary of attributes with paragraph style
NSDictionary *sizeAttributes = @{NSFontAttributeName:font, NSParagraphStyleAttributeName: style};
CGRect frame = [self boundingRectWithSize:constraintSize options:NSStringDrawingUsesLineFragmentOrigin attributes:sizeAttributes context:nil];
/*
// OLD
CGSize stringSize = [self sizeWithFont:font
constrainedToSize:constraintSize
lineBreakMode:lineBreakMode];
// OLD
*/
return frame;
}
我只使用生成的帧的大小。
您仍然可以使用sizeWithFont
。但是,在iOS> = 7.0方法中,如果字符串包含开头和结尾空格或结尾行,则会导致崩溃\n
。
在使用前修剪文本
label.text = [label.text stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
这也适用于sizeWithAttributes
和[label sizeToFit]
。
此外,只要您nsstringdrawingtextstorage message sent to deallocated instance
在iOS 7.0设备中都可以处理此问题。
更好地使用自动尺寸(快速):
tableView.estimatedRowHeight = 68.0
tableView.rowHeight = UITableViewAutomaticDimension
注意:1.应正确设计UITableViewCell原型(为此实例,请不要忘记设置UILabel.numberOfLines = 0等)2.删除HeightForRowAtIndexPath方法
Xamarin中可接受的答案是(使用sizeWithAttributes和UITextAttributeFont):
UIStringAttributes attributes = new UIStringAttributes
{
Font = UIFont.SystemFontOfSize(17)
};
var size = text.GetSizeUsingAttributes(attributes);
作为@Ayush的答案:
正如您
sizeWithFont
在Apple Developer网站上看到的那样,它已被弃用,因此我们需要使用sizeWithAttributes
。
好吧,假设在2019年以后,您可能正在使用Swift而String
不是Objective-c和NSString
,这是String
使用预定义字体获取a大小的正确方法:
let stringSize = NSString(string: label.text!).size(withAttributes: [.font : UIFont(name: "OpenSans-Regular", size: 15)!])
- (CGSize) sizeWithMyFont:(UIFont *)fontToUse
{
if ([self respondsToSelector:@selector(sizeWithAttributes:)])
{
NSDictionary* attribs = @{NSFontAttributeName:fontToUse};
return ([self sizeWithAttributes:attribs]);
}
return ([self sizeWithFont:fontToUse]);
}
如果有人需要,这里是等效的单点触控:
/// <summary>
/// Measures the height of the string for the given width.
/// </summary>
/// <param name="text">The text.</param>
/// <param name="font">The font.</param>
/// <param name="width">The width.</param>
/// <param name="padding">The padding.</param>
/// <returns></returns>
public static float MeasureStringHeightForWidth(this string text, UIFont font, float width, float padding = 20)
{
NSAttributedString attributedString = new NSAttributedString(text, new UIStringAttributes() { Font = font });
RectangleF rect = attributedString.GetBoundingRect(new SizeF(width, float.MaxValue), NSStringDrawingOptions.UsesLineFragmentOrigin, null);
return rect.Height + padding;
}
可以这样使用:
public override float GetHeightForRow(UITableView tableView, NSIndexPath indexPath)
{
//Elements is a string array
return Elements[indexPath.Row].MeasureStringHeightForWidth(UIFont.SystemFontOfSize(UIFont.LabelFontSize), tableView.Frame.Size.Width - 15 - 30 - 15);
}
试试这个语法:
NSAttributedString *attributedText =
[[NSAttributedString alloc] initWithString:text
attributes:@{NSFontAttributeName: font}];
在ios 7中,这些都不对我有用。这就是我最终要做的。我将其放在自定义单元格类中,然后在heightForCellAtIndexPath方法中调用该方法。
在应用商店中查看应用时,我的单元格与描述单元格相似。
首先在情节提要中,将标签设置为“ attributedText”,将行数设置为0(这将自动调整标签的大小(仅适用于iOS 6+))并将其设置为自动换行。
然后,我将自定义单元格类中单元格内容的所有高度加起来。在我的情况下,我在顶部始终带有一个“ Description”(_ descriptionHeadingLabel)标签,这是一个较小的标签,其大小可变,其中包含实际描述(_descriptionLabel),这是从单元格顶部到标题(_descriptionHeadingLabelTopConstraint)的约束。我还添加了3个字符,以使底部间隔开一些(苹果在字幕类型单元格上放置的空间大致相同)。
- (CGFloat)calculateHeight
{
CGFloat width = _descriptionLabel.frame.size.width;
NSAttributedString *attributedText = _descriptionLabel.attributedText;
CGRect rect = [attributedText boundingRectWithSize:(CGSize){width, CGFLOAT_MAX} options: NSStringDrawingUsesLineFragmentOrigin context:nil];
return rect.size.height + _descriptionHeadingLabel.frame.size.height + _descriptionHeadingLabelTopConstraint.constant + 3;
}
在我的表视图委托中:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
{
if (indexPath.row == 0) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"descriptionCell"];
DescriptionCell *descriptionCell = (DescriptionCell *)cell;
NSString *text = [_event objectForKey:@"description"];
descriptionCell.descriptionLabel.text = text;
return [descriptionCell calculateHeight];
}
return 44.0f;
}
您可以将if语句更改为“更智能”,并实际上从某种数据源获取单元格标识符。在我的情况下,单元将被硬编码,因为将有固定数量的特定顺序的单元。
boundingRectWithSize
在ios 9.2中存在问题,结果与ios <9.2不同。您发现或知道其他最佳方法可以做到这一点。
NSString
and和aUILabel
(并非总是如此,但经常如此)时,为了防止重复的代码/等,您还可以替换[UIFont systemFontOfSize:17.0f]
为label.font
-通过引用现有数据而不是多次键入或遍历常量来帮助代码维护。地点等