使用UIFont preferredFontForTextStyle时为什么boundingRectWithSize错误?

时间:2015-06-18 03:55:32

标签: ios8 nsstring uilabel uifont

我发现调用boundingRectWithSize非常不正确,在使用NSFontAttributeName : [UIFont preferredFontForTextStyle:UIFontTextStyleBody]调用时缺少整个额外行。但是,使用字体[UIFont fontWithName:@"Helvetica Neue" size:17.f],就可以了。

以下是显示错误的测试代码:

- (void)viewDidLoad {
    [super viewDidLoad];

    NSString *measureText = @"I'm the king of Portmanteaus ... My students slow clap";

    CGSize maxSize = CGSizeMake(226.f, CGFLOAT_MAX);

    UIFont *targetFont = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];

    CGRect stringRect = [measureText boundingRectWithSize:maxSize
                                                         options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
                                                      attributes:@{ NSFontAttributeName : targetFont }
                                                         context:nil];        

    UILabel *drawLabel = [[UILabel alloc] initWithFrame:stringRect];
    drawLabel.font = targetFont;
    [self.view addSubview:drawLabel];
    drawLabel.textColor = [UIColor blackColor];
    drawLabel.text = measureText;
    drawLabel.numberOfLines = 0;
}

输出:

enter image description here

但是,如果我targetFont = [UIFont fontWithName:@"Helvetica Neue" size:17.f];

它渲染得恰到好处:

enter image description here

在第一种情况下,大小为{226.20200000000008,42.281000000000006},但在正确的第二种情况下,大小为{228.64999999999998,60.366999999999997}。因此,这不是一个四舍五入的问题;这是缺少一个完整的新行。

[UIFont preferredFontForTextStyle:UIFontTextStyleBody]作为参数传递给boundingRectWithSize

是错误的

修改

根据以下答案中的评论,我认为iOS有一个错误,即iOS如何处理与前一个词相关的三个句点。我添加了这段代码:

measureText = [measureText stringByReplacingOccurrencesOfString:@" ..." withString:@"…"];

它运作正常。

1 个答案:

答案 0 :(得分:1)

标签在文本的外部添加了一点边距,但你没有允许这样做。

相反,如果您使用完全符合字符串rect的大小的自定义UIView,您将看到文本非常完美:

enter image description here

这是我使用的代码。在视图控制器中:

- (void)viewDidLoad {
    [super viewDidLoad];
    NSString *measureText = @"I'm the king of Portmanteaus ... My students slow clap";
    CGSize maxSize = CGSizeMake(226.f, CGFLOAT_MAX);
    UIFont *targetFont = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
    CGRect stringRect = [measureText boundingRectWithSize:maxSize
                                                  options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
                                               attributes:@{ NSFontAttributeName : targetFont }
                                                  context:nil];
    stringRect.origin = CGPointMake(100,100);
    StringDrawer* sd = [[StringDrawer alloc] initWithFrame:stringRect];
    [self.view addSubview:sd];
    [sd draw:[[NSAttributedString alloc] initWithString:measureText attributes:@{ NSFontAttributeName : targetFont }]];
}

这是String Drawer(UIView子类):

@interface StringDrawer()
@property (nonatomic, copy) NSAttributedString* text;
@end

@implementation StringDrawer

- (instancetype) initWithFrame: (CGRect) frame {
    self = [super initWithFrame:frame];
    self.backgroundColor = [UIColor yellowColor];
    return self;
}

- (void) draw: (NSAttributedString*) text {
    self.text = text;
    [self setNeedsDisplay];
}

- (void)drawRect:(CGRect)rect {
    [self.text drawInRect:rect];
}

@end

另外,如果您的目的是通过调整其高度来制作包含文本的标签,为什么不让Auto Layout执行它的操作呢?下一个屏幕截图是UILabel,宽度约束为226,没有高度约束。我已经在代码中为您分配了字体和文本。正如您所看到的,它的大小适合所有文本:

enter image description here

这是通过此代码实现的,不再需要:

NSString *measureText = @"I'm the king of Portmanteaus ... My students slow clap";    
UIFont *targetFont = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
self.lab.font = targetFont;
self.lab.text = measureText;