UILabel字体大小?


87

我似乎无法使用以下代码修改UILabel的字体大小:

itemTitle.font = [UIFont systemFontOfSize:25];

当我将数字25增加到更大时,它似乎仅在标签上增加了上边距,从而将文本向下推得太多,从而使文本在底部被截断或完全溢出。

我在其他地方使用systemFontOfSize 25创建了另一个UILabel,它比itemTitle文本小得多。这是怎么回事?25应该不是绝对值吗?

我对如何以编程方式更改uilabels的字体大小感到困惑。

Answers:


56

检查您的标签未设置为自动调整大小。在IB中,它称为“自动收缩”,就在字体设置旁边。以编程方式,它称为adjustsFontSizeToFitWidth


176

我通过以下代码修改了UILabel:

label.font=[label.font fontWithSize:25];

试试这个,看看它是否适合您的情况???


4
label.font = label.font.fontWithSize(25)对于Swift
Tom Howard

迅捷3label.font = label.font.withSize(25)
Marcio Klepacz


17

对于Swift 3.1Swift 4,如果只想更改标签的字体大小:

let myLabel : UILabel = ...
myLabel.font = myLabel.font.withSize(25)

12

**您可以通过这些属性设置字体大小**

timedisplayLabel= [[UILabel alloc]initWithFrame:CGRectMake(70, 194, 180, 60)];

[timedisplayLabel setTextAlignment:NSTextAlignmentLeft];

[timedisplayLabel setBackgroundColor:[UIColor clearColor]];

[timedisplayLabel setAdjustsFontSizeToFitWidth:YES];

[timedisplayLabel setTextColor:[UIColor blackColor]];

[timedisplayLabel setUserInteractionEnabled:NO];

[timedisplayLabel setFont:[UIFont fontWithName:@"digital-7" size:60]];

timedisplayLabel.layer.shadowColor =[[UIColor whiteColor ]CGColor ];

timedisplayLabel.layer.shadowOffset=(CGSizeMake(0, 0));

timedisplayLabel.layer.shadowOpacity=1;

timedisplayLabel.layer.shadowRadius=3.0;

timedisplayLabel.layer.masksToBounds=NO;

timedisplayLabel.shadowColor=[UIColor darkGrayColor];

timedisplayLabel.shadowOffset=CGSizeMake(0, 2);

5

一种非常简单但有效的方法来通过编程方式调整标签文本的大小:-

label.font=[UIFont fontWithName:@"Chalkduster" size:36];

:-)


5

这对我有用

迅捷3

label.font = label.font.fontWithSize(40.0)

斯威夫特4

label.font = label.font.withSize(40.0)

1

这为我工作:

sequencerPlayLabel.font = [UIFont fontWithName:kTypeFont size:kTypeFontSize];

-丰富


1

上面的答案很有帮助。

这是Swift版本。

@IBOutlet weak var priceLabel: UILabel!

*.... lines of code later*

self.priceLabel.font = self.priceLabel.font.fontWithSize(22)

1

在C#中,这些方法可以解决问题,在UIkit中,这些方法可用。

Label.Font = Label.Font.WithSize(5.0f);
       Or
Label.Font = UIFont.FromName("Copperplate", 10.0f);  
       Or
Label.Font = UIFont.WithSize(5.0f);

-1

尝试更改标签框架的高度和宽度,以使文本不会被剪切。

 [label setframe:CGRect(x,y,widht,height)];
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.