2

有问题,需要为 UIButton 的标题分配一些文本。已将按钮换行模式设置为 NSLineBreakByCharWrapping,以便字符串仅由每行末尾的字符分隔。但我需要在行尾插入一个连字符以显示单词的连续性。这是我尝试过的 -

    // Initialize the button

    titleButton.titleLabel.lineBreakMode = NSLineBreakByCharWrapping;
    titleButton.titleLabel.backgroundColor = [UIColor yellowColor];
    [titleButton.titleLabel setFont:[UIFont fontWithName:@"Helvetica-Bold" size:15]];

    // Make the string here
    NSMutableString *titleString = [[NSMutableString alloc] initWithString:@"abcdefghijklmnopqrs tuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"];
        // Insert hyphens 
        int titleLength = [titleString length];
        int hyphenIndex = 19;
        while (hyphenIndex<titleLength) { 
            UniChar charatIndex = [titleString characterAtIndex:hyphenIndex];
            if ((charatIndex - ' ') != 0) { // Check if its not a break bw two words
                [titleString insertString:@"-" atIndex:hyphenIndex]; // else insert an hyphen to  indicate word continuity
            }
            hyphenIndex += 19; //Since exactly 20 char are shown in single line of the button's label. 
        }
        //Set the hyphenated title for the button
        [titleButton setTitle:titleString forState:UIControlStateNormal];
        [titleString release];

这是我能得到的最接近的。

在此处输入图像描述

任何帮助将不胜感激。

4

4 回答 4

1

尝试NSAttributedString

它为使用字符串提供了很大的可能性。

WWDC 2012-230

例如:

- (NSUInteger)lineBreakBeforeIndex:(NSUInteger)index withinRange:(NSRange)aRange
//Returns the appropriate line break when the character at the index won’t fit on the same line as the character at the beginning of the range.
于 2013-08-06T11:21:56.683 回答
0

请参阅我的答案,了解如何使用 NSParagraphStyle 和 NSAttributedString 来获得一个以连字符中断的 UILabel:https ://stackoverflow.com/a/19414663/196358

于 2013-10-16T21:58:40.093 回答
0

您的第二个单词的长度比行的长度(按钮的宽度)更多,这就是发生这种情况的原因。

于 2013-01-09T10:45:15.453 回答
0

粘贴连字符不是一个好主意。您应该在大小适合按钮宽度的部分上拆分字符串,如果需要,请使用而不是添加连字符

[String sizeWithFont:font constrainedToSize:Size lineBreakMode:LineBreakMode]

主要思想是获取初始字符串的一部分(如果单词中断,则添加连字符),检查其宽度是否适合按钮的宽度。如果宽度较小,请尝试较大的部分,否则如果适合 - 处理更多部分

于 2013-01-09T10:57:51.007 回答