【发布时间】:2014-06-26 02:30:29
【问题描述】:
我的导航栏有问题,UIBarButtonItem 没有正确垂直对齐。我不知道为什么,因为我使用的是简单的 UIBarButtonItem 而不是自定义视图。请参阅下面的代码,感谢您的帮助!
UIBarButtonItem *newGameItem = [[UIBarButtonItem alloc] initWithTitle:@"New Game" style:UIBarButtonItemStyleDone target:self action:@selector(newGame)];
self.navigationItem.rightBarButtonItem = newGameItem;
【问题讨论】:
-
这看起来不像标准 UIBarButtonItem 的默认字体。您是否正在修改任何 barbutton 字体属性?也许与 UIAppearance?
-
您想知道为什么“新游戏”略低于“棋盘”标题?
-
是的,我使用的是 Avenir Next,但我在另一个应用程序中使用了这种字体,并且导航栏没有问题。 [[UIBarButtonItem 外观] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor], NSFontAttributeName: [UIFont fontWithName:@"Avenir Next" size:18.0]} forState:UIControlStateNormal]; [[UINavigationBar 外观] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor], NSFontAttributeName: [UIFont fontWithName:@"AvenirNext-DemiBold" size:18.0]}];
-
我会尝试减小字体大小。
-
这听起来像是字体大小问题。需要明确的是,“董事会”是
title还是titleView?
标签: ios objective-c uinavigationbar vertical-alignment uibarbuttonitem