3
我更改了UINavigationBar標題的字體大小&,但這樣做使得標題不再正確對齊,所以我認爲這個"setTitlePositionAdjustment:"
應該可以工作,但它不會(無法識別的選擇器)。我如何調整標題的位置?iOS:調整UINavgationBar標題的位置
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Cochin-Bold" size:24.0],
UITextAttributeFont,
nil]];
[[UINavigationBar appearance] setTitlePositionAdjustment:UIOffsetMake(0, 10)]; // Crash
謝謝!像魅力一樣工作 –
謝謝!無法弄清楚我的生活:) – doug