我有一个简单的故事板,其中包含一个带有静态表视图控制器的导航控制器.我添加了一个视图控制器,并通过push segue将其连接到其中一个单元.我注意到的一件事是导航栏标题没有与后退按钮和UIBarButtonItem垂直居中.
这是现在看起来的图像.
这是现在看起来的图像.
请注意,它全部与底部对齐.我想要的是,一种方法是向下移动标题或向上移动按钮.如果向上移动按钮,也应移动后退按钮箭头,并允许返回主表视图.
这是我用来在视图控制器中设置UIBarButtonItem字体的代码(如果它有帮助):
[clearButton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@“ChalkboardSE-Regular”size:15],NSFontAttributeName,[UIColor whiteColor],NSForegroundColorAttributeName,nil] forState:UIControlStateNormal];
这是我用来设置app委托中的后退按钮的字体,didFinishLaunchingWithOptions ::
[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class],nil] setTitleTextAttributes:@ {NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont fontWithName:@“ChalkboardSE-Regular”size:15]} forState:UIControlStateNormal];