0
我已經設置了一個UIButton作爲我的導航欄的titleView。但是,無論按鈕的寬度如何,標題似乎都會被截斷。爲什麼?標題UIButton截斷
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:[[NSDate date] stringWithNSDateFormatterMediumStyle] forState:UIControlStateNormal];
[button setFrame:CGRectMake(0, 0, 150, 40)];
self.navigationItem.titleView = button;
絕對。無論多寬,我總是會截斷! – NSExplorer
我不確定,但可能是由導航欄強加的限制。你能用像12/25/11這樣的更短的格式還是更小的字體? – Rayfleck
是的,這就是我最終做的。 – NSExplorer