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

ios-在導航標題中調整字體尺寸

編輯:編程綜合問答
在導航標題中調整字體尺寸

有沒有方法實現導航標題的字體根據寬度調整?

比如[UILabel setAdjustsFontSizeToFitWidth:YES]

試過很多方法都沒實現,請好心人幫忙,謝謝。

最佳回答:


自定義UINavigationItem的titleView
在titleView中創建一個UILabel ,設置UILabel的相關屬性再試。

UILabel *lbl=[[UILabel alloc] initWithFrame:....];
[lbl setAdjustsFontSizeToFitWidth:YES];
...

self.navigationItem.titleView=lbl;
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved