我有一个使用自定义字体的 UIButton
,它是在我的视图加载时设置的:
- (void)viewDidLoad
{
[super viewDidLoad];
self.searchButton.titleLabel.font = [UIFont fontWithName: @"FONTNAME" size: 15.0 ];
}
我遇到的问题是字体看起来像是浮在中心线上。如果注释掉这一行,默认字体垂直居中。但是更改为自定义字体会破坏垂直对齐。
我在使用自定义字体的 Table Cell 上也遇到了同样的问题。
我是否需要告诉视图某处的自定义字体不像其他字体那么高?
EDIT: I've just realized that the font I'm using is a Windows TrueType Font. I can use it fine in TextEdit on the Mac, only a problem with the alignment in my App