我想在導航欄中使用兩個UILabels而不是一個。ios標題和字幕在導航欄中居中
我跟着這個鏈接,就如何做到這一點的信息: iPhone Title and Subtitle in Navigation Bar
它運作良好,但我不能讓我的文字要正確居中。 它位於按鈕之間,但是默認的標題行爲是在時間的下方居中。
我在這裏一看,同樣的問題,但沒有答案: UINavigationBar TitleView with subtitle
我缺少什麼? 這裏是我的代碼:
CGRect headerTitleSubtitleFrame = CGRectMake(0, 0, 200, 44);
UIView* _headerTitleSubtitleView = [[UILabel alloc] initWithFrame:headerTitleSubtitleFrame];
_headerTitleSubtitleView.backgroundColor = [UIColor clearColor];
_headerTitleSubtitleView.autoresizesSubviews = NO;
CGRect titleFrame = CGRectMake(0, 2, 200, 24);
UILabel *titleView = [[UILabel alloc] initWithFrame:titleFrame];
titleView.backgroundColor = [UIColor clearColor];
titleView.font = [UIFont boldSystemFontOfSize:20];
titleView.textAlignment = NSTextAlignmentCenter;
titleView.textColor = [UIColor whiteColor];
titleView.shadowColor = [UIColor darkGrayColor];
titleView.shadowOffset = CGSizeMake(0, -1);
titleView.text = @"Title";
titleView.adjustsFontSizeToFitWidth = YES;
[_headerTitleSubtitleView addSubview:titleView];
CGRect subtitleFrame = CGRectMake(0, 24, 200, 44-24);
UILabel *subtitleView = [[UILabel alloc] initWithFrame:subtitleFrame];
subtitleView.backgroundColor = [UIColor clearColor];
subtitleView.font = [UIFont boldSystemFontOfSize:13];
subtitleView.textAlignment = NSTextAlignmentCenter;
subtitleView.textColor = [UIColor whiteColor];
subtitleView.shadowColor = [UIColor darkGrayColor];
subtitleView.shadowOffset = CGSizeMake(0, -1);
subtitleView.text = @"Subtitle";
subtitleView.adjustsFontSizeToFitWidth = YES;
[_headerTitleSubtitleView addSubview:subtitleView];
self.navigationItem.titleView = _headerTitleSubtitleView;
非常感謝!它現在有效。但我不明白。爲什麼當給定尺寸更高時它不居中? – user2700551
它不適用於所有不同的情況。雖然它適用於此後退按鈕,但左側的後退按鈕可以更寬,標題向右移動。 – user2700551
文字始終以標籤爲中心。所以你應該相應地調整標籤的寬度。如果爲測試標籤設置了backgroundcolor,那麼你會得到清晰的想法。如果你能夠接受並且贊同答案,那麼它會非常可觀。 –