UI按钮标题上的自定义字体被剪切在单词顶部 [英] custom font on UIbutton title clipped on top of word

查看:88
本文介绍了UI按钮标题上的自定义字体被剪切在单词顶部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我上传了一个自定义字体,并使用以下代码将此字体应用于UI按钮的标题

I have uploaded a custom font and applied this font on the title of a UIbutton using the following code

videoButton.titleLabel.font = [UIFont fontWithName:@"LaurenScript" size:20];

问题是标题被剪裁在第一个字母的顶部(见下图) 。我尝试在UIlabel上使用相同的字体,它工作正常,所以它不是字体的问题。我还尝试使用

The problem is that the title is being clipped on the top of the first letter (see photo below). I tried the same font on the UIlabel and it works fine so it is not a problem with the font. I tried also to change the rectFrame using

[videoButton.titleLabel setFrame:CGRectMake(0, 0, 300, 600)];

但是没有做任何事情。
有谁知道如何解决这个问题?
干杯

but that didn't do anything. Has anybody a clue of how I can fix this problem? Cheers

推荐答案

我遇到了类似的问题,在标题标签的顶部截断了分音符号。
我创建了一个UIButton子类并使用此代码来解决问题:

I had a similar problem, where a diaeresis got cut off on top of the titlelabel. I made a UIButton subclass and used this code to fix the problem:

-(void)layoutSubviews
{
    [super layoutSubviews];

    CGRect frame = self.titleLabel.frame;
    frame.size.height = self.bounds.size.height;
    frame.origin.y = self.titleEdgeInsets.top;
    self.titleLabel.frame = frame;
}

这篇关于UI按钮标题上的自定义字体被剪切在单词顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆