大家好,我用下面的代碼自定義UINavigationBa標題之後,標題和文本都縮短了。
[[UINavigationBar appearance] setTitleTextAttributes:@{
UITextAttributeTextColor : [UIColor whiteColor],
UITextAttributeFont : [UIFont fontWithName:@"Intro" size:20.0f],
UITextAttributeTextShadowColor : [UIColor clearColor]
}];
如圖所示,其實空間長度足夠完全顯示的。
UINavigationBar 布局中有這樣的問題。在視圖控制器出現的時候更新一下布局
- (void)viewDidLoad
{
[super viewDidLoad];
...
[[[self navigationController] navigationBar] setNeedsLayout];
}