gpt4 book ai didi

iphone - UILabel 换行时未完全居中对齐

转载 作者:行者123 更新时间:2023-12-03 21:22:58 25 4
gpt4 key购买 nike

查看图像例如:http://img25.imageshack.us/img25/6996/90754687.png
灰色背景表示 UILabel 框架的大小。

出于某种原因,即使我使用 UITextAlignmentCenter,换行文本的第一行似乎并不总是居中。

这是我用来设置标签的代码:

    self.titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
titleLabel.font = [UIFont boldSystemFontOfSize:fontHeight];
titleLabel.backgroundColor = [UIColor grayColor];
titleLabel.numberOfLines = 2;
titleLabel.lineBreakMode = UILineBreakModeMiddleTruncation;

NSString * title = file.name;
CGSize maximumSize = CGSizeMake(thumbnailWidth+4,fontHeight * 3);
UIFont * font = [UIFont boldSystemFontOfSize:12];
CGSize stringSize = [title sizeWithFont:font constrainedToSize:maximumSize lineBreakMode:titleLabel.lineBreakMode];

CGRect stringFrame = CGRectMake(0, thumbnailHeight + thumbnailPadding, thumbnailWidth + 4, stringSize.height);
titleLabel.text = title;
titleLabel.frame = stringFrame;
titleLabel.textAlignment = UITextAlignmentCenter;

最佳答案

是因为文本中没有空格吗?在 IB 中,如果你没有空格,它的 react 就像你的 get 一样。将换行模式设置为字符换行往往会使第二行居中于第一行,但这可能也不完全是您想要的。

关于iphone - UILabel 换行时未完全居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3078587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com