在fontWithName中更改size的值没有可见效果

时间:2015-05-13 18:52:42

标签: ios uifont

我尝试使用此代码将我的文字字体设置为Helvetica Neue Thin

[UIFont fontWithName:@"Helvetica Neue Thin" size:14.0f];

文本具有给定的字体,但更改代码中的大小对应用程序中可见的文本没有影响。

编辑 -

完整的代码块

nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(190, 5, screenWidth-210, 15)];
    nameLabel.font = [UIFont fontWithName:@"Helvetica Neue Thin" size:6.0f];
    nameLabel.textColor = [UIColor grayColor];
    nameLabel.textAlignment = NSTextAlignmentRight;
    [self.contentView addSubview:nameLabel];

有什么理由吗?

1 个答案:

答案 0 :(得分:2)

[UIFont fontWithName:@"HelveticaNeue-Thin" size:14.0];

您的字体名称不正确。