我在应用程序委托中修改了导航栏,如下所示:
NSDictionary *settings = @{
UITextAttributeFont : [UIFont fontWithName:@"impact" size:36.0],
UITextAttributeTextColor : [UIColor whiteColor],
UITextAttributeTextShadowColor : [UIColor clearColor],
UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetZero]};
[[UINavigationBar appearance] setTitleTextAttributes:settings];
但是对于较大的字体,字体会像这样缩小。:
我尝试在我的 VC 的 viewWillAppear 中这样做:
UIView *newTitleView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
[newTitleView setBackgroundColor:[UIColor blackColor]];
[self.navigationController.navigationBar addSubview:newTitleView];
然后我打算将标题对齐到中心。但这似乎并不正确。我真正需要的只是删除标题标签顶部和底部的边距。我该怎么做。