程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-UINavigationBar標題的問題

ios-UINavigationBar標題的問題

編輯:編程綜合問答
UINavigationBar標題的問題

大家好,我用下面的代碼自定義UINavigationBa標題之後,標題和文本都縮短了。

[[UINavigationBar appearance] setTitleTextAttributes:@{
                            UITextAttributeTextColor : [UIColor whiteColor],
                            UITextAttributeFont : [UIFont fontWithName:@"Intro" size:20.0f],
                            UITextAttributeTextShadowColor : [UIColor clearColor]
                            }];

CSDN移動問答

如圖所示,其實空間長度足夠完全顯示的。

最佳回答:


UINavigationBar 布局中有這樣的問題。在視圖控制器出現的時候更新一下布局

- (void)viewDidLoad
{
    [super viewDidLoad];
    ...
    [[[self navigationController] navigationBar] setNeedsLayout];
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved