问题描述
我已上传自定义字体并使用以下代码将此字体应用于 UIbutton 的标题
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;
}
这篇关于UIbutton标题上的自定义字体夹在单词的顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!