我在我的应用程序中添加了一个自定义字体,我通过子类化自定义字体为某些按钮设置了自定义字体,在 xib 自定义字体中完美设置
但是在设备中执行时,字体会自动调整为所有按钮的顶部。
这是我的自定义字体子类代码。
@interface ButtonWithBebasNeueFont : UIButton
@end
@implementation ButtonWithBebasNeueFont
- (void)awakeFromNib
{
[super awakeFromNib];
self.titleLabel.font = [UIFont fontWithName:@"BebasNeue" size:self.titleLabel.font.pointSize];
}
@end
请指导我解决此问题。
谢谢。