UILabel归于Text和minimumScaleFactor

时间:2012-11-17 18:29:46

标签: objective-c cocoa-touch cocoa uilabel

是否可以同时使用minimumScaleFactor和属性文本字符串?

        [myLabel setFrame:CGRectMake(6, 0, 200, 25)];
    NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:@"A very long string and its first 20 characters should be bold"];
    [attStr addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:17] range:NSMakeRange(0, 20)];
    myLabel.attributedText = attStr;
    [myLabel setAdjustsFontSizeToFitWidth:YES];
    [myLabel setAdjustsLetterSpacingToFitWidth:YES];
    [myLabel setMinimumScaleFactor:0.3];

这似乎不起作用。如果我设置myLabel.text,它会按预期进行缩放。我如何缩放才能正常工作?

1 个答案:

答案 0 :(得分:2)

您可以使用第20个字符部分并获得其宽度,然后您可以使用相同的方式获取其余部分的宽度:

CGSize maximumLabelSize = CGSizeMake(500.0,20.0);//write a really long width

//this will turn the expected length of the labels.. 
 CGSize expectedFirstLabelSize = [[[[NSMutableAttributedString alloc] initWithString:@"A very long string and its first 20 characters should be bold"] substringToIndex:21]
 sizeWithFont:[UIFont  boldSystemFontOfSize:17] constrainedToSize:maximumLabelSize lineBreakMode:nil];


 CGSize expectedLastLabelSize = [[[[NSMutableAttributedString alloc] initWithString:@"A very long string and its first 20 characters should be bold"] substringFromIndex:20] 
sizeWithFont:[UIFont  normalSystemFontOfSize:15] constrainedToSize:maximumLabelSize lineBreakMode:nil];

然后你会知道他们的长度... 对于前第一部分是140像素,休息是260像素,你的标签面积是100像素, 那么你可以创建2个不同的标签,35 px和65 px。 然后你可以为这两个标签使用setAdjustsFontSizeToFitWidth。