I have a subclass of UIButton
that uses a custom font. The problem is that capital letters don't show diaeresis.
Below there are images of the same button sample with and without the custom font. I set the title's background color to red to see what is going on.
Without custom font
With custom font
My UIButton
subclass overrides awakeFromNib
- (void)awakeFromNib
{
[super awakeFromNib];
UIFont *font = [UIFont fontWithName:@"TitilliumText22L-Bold" size:self.titleLabel.font.pointSize];
self.titleLabel.font = font;
}
Can anyone tell me what to do in order to show the diaeresis on top of capital letters?
Thanks.