如何删除 uilabelview 文本在 iphone 末尾附加三个点

发布于 2024-12-03 14:25:03 字数 606 浏览 2 评论 0原文

我有一个 UILabel,它附加了 UILabel。我向其中添加 NSString 值,每次在文本结束后为每个单元格添加三个点到文本文件的末尾。 我不知道为什么我会得到这个。有没有人遇到过类似的问题: 在这里我定义了我的 UILabel:

    UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 15, 15)];
    // set the label 
    label1.backgroundColor = [UIColor clearColor];
    label1.font = [UIFont boldSystemFontOfSize:14];
    label1.adjustsFontSizeToFitWidth = NO;
    self.labelView1 = label1;
    [self.contentView addSubview:label1];
    [label1 release];

并添加了如下文本。

labelView1.text = title;
labelView1.adjustsFontSizeToFitWidth = NO;

I have a UILabel which has UILabel attached to it. I add NSString value to it and each time for each cell after the text is over, it appends three dots to the end of the text file.
I am not sure why would I get that. Does any body have faced the similar problems:
Here I define my UILabel:

    UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 15, 15)];
    // set the label 
    label1.backgroundColor = [UIColor clearColor];
    label1.font = [UIFont boldSystemFontOfSize:14];
    label1.adjustsFontSizeToFitWidth = NO;
    self.labelView1 = label1;
    [self.contentView addSubview:label1];
    [label1 release];

And I add the text as following.

labelView1.text = title;
labelView1.adjustsFontSizeToFitWidth = NO;

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风蛊 2024-12-10 14:25:03

如果您不希望标签在字符串不适合标签大小时附加“...”,请将标签的 lineBreakMode 属性设置为 UILineBreakModeClip:

label1.lineBreakMode = UILineBreakModeClip;

If you don't want the label to append '...' when string does not fit label's size set label's lineBreakMode property to UILineBreakModeClip:

label1.lineBreakMode = UILineBreakModeClip;
奢欲 2024-12-10 14:25:03

问题是文本太长,无法容纳标签,并且您已调用

label1.adjustsFontSizeToFitWidth = NO;

,这意味着文本不会缩小以适应标签。

如果宽度为 15,则几乎无法容纳 14 字体大小的一个字母。使标签更大或尺寸适合(或两者)。

The problem is that the text is too long to fit the label and you've called

label1.adjustsFontSizeToFitWidth = NO;

which means the text will not be scaled down to fit.

With a width of 15, you can barely fit one letter of font size 14. Make the label bigger or size to fit (or both).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文