gpt4 book ai didi

iphone - UILabel - 在 iPhone 中以编程方式设置字体 - 字体

转载 作者:行者123 更新时间:2023-12-03 18:16:11 24 4
gpt4 key购买 nike

我的应用程序中有以下代码。

tmp=[[UILabel alloc] initWithFrame:label1Frame];
tmp.tag=1;
tmp.textColor=[UIColor blackColor];
[tmp setFont:[UIFont fontWithName:@"American Typewriter" size:18]];
tmp.backgroundColor=[UIColor clearColor];
[cell.contentView addSubview:tmp];
[tmp release];

现在,我需要知道,

======>如何通过代码设置“Typeface=bold”?

最佳答案

您将需要使用该系列中的bold字体的名称。要了解是否有美国打字机的粗体版本,请尝试输出

[UIFont fontNamesForFamilyName:@"AmericanTypewriter"] 

到控制台。

在这种情况下,您应该使用“AmericanTypewriter-Bold”

[UIFont fontNamesForFamilyName:@"AmericanTypewriter-Bold"] 

关于iphone - UILabel - 在 iPhone 中以编程方式设置字体 - 字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1302833/

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