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标题上的自定义字体夹在单词的顶部


基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01