UIButton.titleLabel裁剪文本问题

发布于 2024-09-13 22:29:41 字数 1158 浏览 8 评论 0原文

希望我能得到一些帮助来解决 UILabel 的一个相当模糊的问题。我不断遇到字符剪辑问题。下面链接中的图像中的字体是 baskerville-bolditalic。黄色是 UIButton 渲染的矩形。黄色是 UIButton 的 titleLabel.backgroundColor。

http://img5.imageshack.us/img5/2381/screenshot20100813at235.png

这是代码:

    UIButton * currentCharacter = [UIButton buttonWithType:UIButtonTypeCustom];
    currentCharacter.frame = cFrame;
    currentCharacter.backgroundColor = [UIColor blueColor];
        currentCharacter.titleLabel.backgroundColor = [UIColor yellowColor];
        currentCharacter.titleLabel.numberOfLines = 1;
        currentCharacter.titleLabel.adjustsFontSizeToFitWidth = YES;
        currentCharacter.titleLabel.minimumFontSize = 1;
        currentCharacter.titleLabel.font = currentFont;
        currentCharacter.titleLabel.clipsToBounds = NO;
        currentCharacter.clipsToBounds = NO;

        currentCharacter.titleLabel.textAlignment = UITextAlignmentCenter;
        currentCharacter.titleLabel.adjustsFontSizeToFitWidth = YES;

也许我只是误解了 adjustmentFontSizeToFitWidth。提前非常感谢!

Hope I can get some help with a rather obscure problem with UILabel. I keep getting problems with clipping of characters. The font in the image at the link below is baskerville-bolditalic. The yellow is the rect that the UIButton is rendered in. The yellow is the UIButton's titleLabel.backgroundColor.

http://img5.imageshack.us/img5/2381/screenshot20100813at235.png

Here is the code:

    UIButton * currentCharacter = [UIButton buttonWithType:UIButtonTypeCustom];
    currentCharacter.frame = cFrame;
    currentCharacter.backgroundColor = [UIColor blueColor];
        currentCharacter.titleLabel.backgroundColor = [UIColor yellowColor];
        currentCharacter.titleLabel.numberOfLines = 1;
        currentCharacter.titleLabel.adjustsFontSizeToFitWidth = YES;
        currentCharacter.titleLabel.minimumFontSize = 1;
        currentCharacter.titleLabel.font = currentFont;
        currentCharacter.titleLabel.clipsToBounds = NO;
        currentCharacter.clipsToBounds = NO;

        currentCharacter.titleLabel.textAlignment = UITextAlignmentCenter;
        currentCharacter.titleLabel.adjustsFontSizeToFitWidth = YES;

Maybe I'm just misunderstanding adjustsFontSizeToFitWidth. Thanks a ton in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文