このコードを使用して UINavigationBar タイトルの外観をカスタマイズすると、下の画像に示すように、テキストを含むラベルが切り捨てられます。
[[UINavigationBar appearance] setTitleTextAttributes:@{
UITextAttributeTextColor : [UIColor whiteColor],
UITextAttributeFont : [UIFont fontWithName:@"Intro" size:20.0f],
UITextAttributeTextShadowColor : [UIColor clearColor]
}];
そして、ご覧のとおり、十分なスペースがあります。
何か案は?