0

我有一个iPad应用程序可以创建一个pdf并且工作正常,但是我试图让标题变粗。

目前我有:

UIFont *font = [UIFont fontwithname:@"arial" size 12];

我想知道我需要添加什么来使文本加粗

非常感谢

4

1 回答 1

2

这可以解决问题:

UIFont *font = [UIFont fontWithName:@"Arial-BoldMT" size:12.0];
于 2013-03-17T13:21:50.133 回答