更改 fontWithName 中的大小值没有明显效果
changing the value of size in fontWithName has no visible effect
我正在尝试使用此代码将我的文本字体设置为 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];
有什么原因吗?
[UIFont fontWithName:@"HelveticaNeue-Thin" size:14.0];
您的字体名称不正确。
我正在尝试使用此代码将我的文本字体设置为 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];
有什么原因吗?
[UIFont fontWithName:@"HelveticaNeue-Thin" size:14.0];
您的字体名称不正确。