10

我有UILabel其中包含由新行分隔的两个属性字符串。NSMutableAttributedString第一个字符串的字体大小设置为 17,第二个字符串的字体大小设置为 14。如果其内容不能放在一行中,我希望将第一个字符串的大小调整为最小字体大小。

那可能吗?

通过在 IB 中为纯文本设置“自动缩小到最小字体大小”来配置此类行为非常简单UILabel,但不知道如何为属性文本执行此操作。

这是我的代码:

NSString *eventName = @"Looong Event Name";
NSString *placeString = @"My place";

eventName = [eventName stringByAppendingString:@"\n"];        
NSMutableAttributedString *attrName = [[NSMutableAttributedString alloc] initWithString:eventName];
[attrName addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:17] range:NSMakeRange(0, [eventName length])];


 NSMutableAttributedString *attrPlace = [[NSMutableAttributedString alloc] initWithString:placeString];
 [attrPlace addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:14] range:NSMakeRange(0, placeString.length)];
 [attrPlace addAttribute:NSForegroundColorAttributeName value:[UIColor grayColor] range:NSMakeRange(0, placeString.length)];

  NSMutableAttributedString *finalString = [[NSMutableAttributedString alloc] initWithAttributedString:attrName];
  [finalString appendAttributedString:attrPlace];

  UILabel *nameLabel = (UILabel *)[cell viewWithTag:100];

  nameLabel.attributedText = finalString;
4

1 回答 1

6

我想这是您之前问题的后续。

我认为您不能自动执行此操作,但是有一种sizeNSAttributedString 方法,您可以使用它来检查您的字符串是否太大,并在需要时自行调整。

于 2013-02-10T14:15:49.210 回答