gpt4 book ai didi

iphone - iOS - 自动缩小带有属性文本的 UILabel

转载 作者:技术小花猫 更新时间:2023-10-29 11:24:43 25 4
gpt4 key购买 nike

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

这可能吗?

通过在 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;

最佳答案

我想这是您的 earlier question 的后续内容.

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

关于iphone - iOS - 自动缩小带有属性文本的 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14798500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com