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


- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- UITextView 内容插图 2022-01-01
- URL编码Swift iOS 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01