我需要在导航栏上设置最小字体比例。我在 AppDelegate.m 中设置标题属性:
[[UINavigationBar appearance] setTitleTextAttributes: @{
UITextAttributeTextColor: [UIColor colorWithRed:54/255.0f green:54/255.0f blue:54/255.0f alpha:1.0f],
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetMake(0.0f, 0.0f)],
UITextAttributeFont: [UIFont fontWithName:@"HelveticaNeue-Bold" size:20.0f]
}];
我的导航栏被拖放到故事板中的 UIView 上。一切都适用于自定义导航栏图像和文本属性,但如果可能的话,我需要设置最小字体比例。