我尝试使用此代码将我的文字字体设置为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];
有什么理由吗?
答案 0 :(得分:2)
[UIFont fontWithName:@"HelveticaNeue-Thin" size:14.0];
您的字体名称不正确。