使用此代码自定义 UINavigationBar 标题外观后,带有文本的标签会被截断,如下图所示:
[[UINavigationBar appearance] setTitleTextAttributes:@{
UITextAttributeTextColor : [UIColor whiteColor],
UITextAttributeFont : [UIFont fontWithName:@"Intro" size:20.0f],
UITextAttributeTextShadowColor : [UIColor clearColor]
}];
而且,如您所见,有足够的空间。
有任何想法吗?