有一些在導航控制器顯示的視圖,其中有兩個title非常長。
導航中超出長度的title字符就會被壓縮,顯示成……
。
有沒有辦法能讓導航根據標題長度自動調整?
在ViewDidload
中加上下面的代碼:
self.title = @"Your TiTle Text";
UILabel* tlabel=[[UILabel alloc] initWithFrame:CGRectMake(0,0, 200, 40)];
tlabel.text=self.navigationItem.title;
tlabel.textColor=[UIColor whiteColor];
tlabel.font = [UIFont fontWithName:@"Helvetica-Bold" size: 30.0];
tlabel.backgroundColor =[UIColor clearColor];
tlabel.adjustsFontSizeToFitWidth=YES;
self.navigationItem.titleView=tlabel;