UILabel中的多行文本


Answers:


796

我找到了解决方案。

只需添加以下代码即可:

// Swift
textLabel.lineBreakMode = .ByWordWrapping // or NSLineBreakMode.ByWordWrapping
textLabel.numberOfLines = 0 

// For Swift >= 3
textLabel.lineBreakMode = .byWordWrapping // notice the 'b' instead of 'B'
textLabel.numberOfLines = 0

// Objective-C
textLabel.lineBreakMode = NSLineBreakByWordWrapping;
textLabel.numberOfLines = 0;

// C# (Xamarin.iOS)
textLabel.LineBreakMode = UILineBreakMode.WordWrap;
textLabel.Lines = 0;  

恢复了旧答案(供参考和愿意在6.0以下支持iOS的开发人员使用):

textLabel.lineBreakMode = UILineBreakModeWordWrap;
textLabel.numberOfLines = 0;

从侧面看:两个枚举值总会产生结果0


16
UILineBreakModeWordWrap实际上是默认设置,因此您不需要第一行。
Jarred Olson 2012年

1
对于使用快捷那些:cell.textLabel?.lineBreakMode = NSLineBreakMode.ByWordWrappingcell.textLabel?.numberOfLines = 0
boidkan

5
感谢您也提供Xamarin代码。自动
补全功能无效

我同意Jarred Olson的观点NSLineBreakByWordWrapping默认值。我像Gurumoorthy Arumugam指南一样添加了属性sizeToFit来修复它。如果您希望标签内的字体进行调整以适合标签的边界。您可以使用:textLabel.adjustsFontSizeToFitWidth = YES; 谢谢大家
ryan tran 2015年

@JarredOlson文档说:“默认情况下,此属性设置为byTruncatingTail。”
法案

138

在IB中,将行数设置为0(允许无限行)

使用IB在文本字段中键入内容时,请使用“ alt-return”插入一个返回符并转到下一行(或者您可以复制已经由行分隔的文本)。


1
[因为他有意识地挖掘了一个超过一年的线程...]我有时希望在IB中做的一件事是输入没有嵌入换行符的文本,设置UILineBreakModeWordWrap和numberOfLines = 0,然后将标签自动自动调整高度,同时仍在IB中进行设计。我正在考虑将视图调整为横向的情况,其中标签中的换行符可能会出现问题。或者...我可能会滥用IB!也许让标签在IB中自动调整大小会导致更多的问题而不是解决的?(此外,无论如何您现在都无法调用sizeToFit。)
Joe D'Andrea 2010年

我从UILabel的文档中获得的“ 0”是从一个已经使用Interface Builder多年的朋友那里得到的alt返回。
肯德尔·赫尔姆斯特·盖尔纳2011年

3
+1是提及“ alt-return”的唯一答案。特别是“ ctrl-return”似乎可以使用,但没有用。
paulmelnikow

52

我发现的最佳解决方案(对于应该在框架中解决的令人沮丧的问题)类似于vaychick的解决方案。

只需在IB或代码中将行数设置为0

myLabel.numberOfLines = 0;

这将显示所需的行,但将重新放置标签,使其水平居中(以便1行和3行标签在其水平位置对齐)。要解决此问题,请执行以下操作:

CGRect currentFrame = myLabel.frame;
CGSize max = CGSizeMake(myLabel.frame.size.width, 500);
CGSize expected = [myString sizeWithFont:myLabel.font constrainedToSize:max lineBreakMode:myLabel.lineBreakMode]; 
currentFrame.size.height = expected.height;
myLabel.frame = currentFrame;

在您和@Ilya Suzdalnitski的帮助下解决我的查询。非常感谢。
Mihir Oza,2015年

33

使用它可以在中包含多行文本UILabel

textLabel.lineBreakMode = NSLineBreakByWordWrapping;
textLabel.numberOfLines = 0;

迅速:

textLabel.lineBreakMode = .byWordWrapping
textLabel.numberOfLines = 0



15

您可以使用\r转到下一行,同时填补了UILabel使用NSString

UILabel * label;


label.text = [NSString stringWithFormat:@"%@ \r %@",@"first line",@"seconcd line"];

14

让我们尝试一下

textLabel.lineBreakMode = NSLineBreakModeWordWrap; // UILineBreakModeWordWrap deprecated     
textLabel.numberOfLines = 0;                          

也可以在UILabel的整个IB“行”属性中将其设置为0。
KoreanXcodeWorker's

11
textLabel.lineBreakMode = UILineBreakModeWordWrap;
textLabel.numberOfLines = 0;

上面的解决方案不适用于我的情况。我是这样的:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // ...

    CGSize size = [str sizeWithFont:[UIFont fontWithName:@"Georgia-Bold" size:18.0] constrainedToSize:CGSizeMake(240.0, 480.0) lineBreakMode:UILineBreakModeWordWrap];
    return size.height + 20;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        // ...
        cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
        cell.textLabel.numberOfLines = 0;
        cell.textLabel.font = [UIFont fontWithName:@"Georgia-Bold" size:18.0];
    }

    // ...

    UILabel *textLabel = [cell textLabel];
    CGSize size = [text sizeWithFont:[UIFont fontWithName:@"Georgia-Bold" size:18.0]
                                        constrainedToSize:CGSizeMake(240.0, 480.0)
                                            lineBreakMode:UILineBreakModeWordWrap];

    cell.textLabel.frame = CGRectMake(0, 0, size.width + 20, size.height + 20);

    //...
}


8

Swift 3
将行数设置为零以获取动态文本信息,这对于更改文本很有用。

var label = UILabel()
let stringValue = "A label\nwith\nmultiline text."
label.text = stringValue
label.numberOfLines = 0
label.lineBreakMode = .byTruncatingTail // or .byWrappingWord
label.minimumScaleFactor = 0.8 . // It is not required but nice to have a minimum scale factor to fit text into label frame

在此处输入图片说明


1
谢谢Krunal,它对我有用!
Yogesh Patel,

6
UILabel *helpLabel = [[UILabel alloc] init];
NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:label];
helpLabel.attributedText = attrString;
// helpLabel.text = label;

helpLabel.textAlignment = NSTextAlignmentCenter;
helpLabel.lineBreakMode = NSLineBreakByWordWrapping;
helpLabel.numberOfLines = 0;

由于某些原因,它在iOS 6中对我不起作用,不确定原因。尝试使用带属性文本和不带属性文本的情况。有什么建议么。


6

尝试使用此:

lblName.numberOfLines = 0;
[lblName sizeToFit];

当numberOfLine不同于0时,sizeToFit不起作用。这很有趣。
Onur Tuna

3

这些东西帮了我

更改UILabel的这些属性

label.numberOfLines = 0;
label.adjustsFontSizeToFitWidth = NO;
label.lineBreakMode = NSLineBreakByWordWrapping;

在输入字符串时,请使用\ n在不同的行中显示不同的单词。

范例:

 NSString *message = @"This \n is \n a demo \n message for \n stackoverflow" ;

3

方法1:

extension UILabel {//Write this extension after close brackets of your class
    func lblFunction() {
        numberOfLines = 0
        lineBreakMode = .byWordWrapping//If you want word wraping
        //OR
        lineBreakMode = .byCharWrapping//If you want character wraping
    }
}

现在这样简单地打电话

myLbl.lblFunction()//Replace your label name 

例如:

Import UIKit

class MyClassName: UIViewController {//For example this is your class. 

    override func viewDidLoad() {
    super.viewDidLoad()

        myLbl.lblFunction()//Replace your label name 

    }

}//After close of your class write this extension.

extension UILabel {//Write this extension after close brackets of your class
    func lblFunction() {
        numberOfLines = 0
        lineBreakMode = .byWordWrapping//If you want word wraping
        //OR
        lineBreakMode = .byCharWrapping//If you want character wraping
    }
}

方法2:

以编程方式

yourLabel.numberOfLines = 0
yourLabel.lineBreakMode = .byWordWrapping//If you want word wraping
//OR
yourLabel.lineBreakMode = .byCharWrapping//If you want character wraping

方法3:

通过故事板

要显示多行设置为0(零),这将在标签中显示多行。

如果要显示n行,请设置n。

请参阅以下屏幕。

在此处输入图片说明

如果要设置标签的最小字体大小,请单击“自动收缩”,然后选择“最小字体大小”选项

见下面的屏幕

在此处输入图片说明

此处设置最小字体

EX:9(在此图像中)

如果您的标签当时有更多文字,您的标签文字将缩小到9

在此处输入图片说明



2

您也可以通过情节提要进行此操作:

  1. 在视图控制器上选择标签
  2. 在“属性”检查器中,增加“线”选项的值(按Alt + Cmd + 4以显示“属性”检查器)
  3. 双击视图控制器中的标签,然后编写或粘贴您的文本
  4. 调整标签大小和/或增加字体大小,以便可以显示整个文本

并将“行数”设置为0,否则它将仅显示可以放入指定行数的文本,其他行将被省略。
toing_toing '16

2

您应该尝试这样:

-(CGFloat)dynamicLblHeight:(UILabel *)lbl
{
    CGFloat lblWidth = lbl.frame.size.width;
    CGRect lblTextSize = [lbl.text boundingRectWithSize:CGSizeMake(lblWidth, MAXFLOAT)
                                               options:NSStringDrawingUsesLineFragmentOrigin
                                            attributes:@{NSFontAttributeName:lbl.font}
                                               context:nil];
    return lblTextSize.size.height;
}


1

已回答,但您也可以在情节提要中手动进行。在“标签的属性检查器”下,可以将“换行符”更改为“自动换行”(或“自动换行”)。


1

在此函数中,您要在标签中分配的传递字符串,并传递字体大小代替self.activityFont,并传递标签宽度,而不是235,现在您将根据字符串获得标签高度。它将正常工作。

-(float)calculateLabelStringHeight:(NSString *)answer
{
    CGRect textRect = [answer boundingRectWithSize: CGSizeMake(235, 10000000) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:self.activityFont} context:nil];
    return textRect.size.height;

}

1

在代码或情节提要中设置以下内容

Label.lineBreakMode = NSLineBreakByWordWrapping; Label.numberOfLines = 0;

并且请不要忘记为标签设置左,右,顶部和底部约束,否则它将无法正常工作。


它说到处都将自动换行和行数设置为0。但是我的仍然没有自动换行。设置左,上,下和右约束使其环绕。
anoo_radha

1

斯威夫特4:

label.lineBreakMode = .byWordWrapping

label.numberOfLines = 0

label.translatesAutoresizingMaskIntoConstraints = false

label.preferredMaxLayoutWidth = superview.bounds.size.width - 10 

0

在C#上,这在UITableViewCell中对我有用。

        UILabel myLabel = new UILabel();
        myLabel.Font = UIFont.SystemFontOfSize(16);
        myLabel.Lines = 0;
        myLabel.TextAlignment = UITextAlignment.Left;
        myLabel.LineBreakMode = UILineBreakMode.WordWrap;
        myLabel.MinimumScaleFactor = 1;
        myLabel.AdjustsFontSizeToFitWidth = true;

       myLabel.InvalidateIntrinsicContentSize();
       myLabel.Frame = new CoreGraphics.CGRect(20, mycell.ContentView.Frame.Y + 20, cell.ContentView.Frame.Size.Width - 40, mycell.ContentView.Frame.Size.Height);
       myCell.ContentView.AddSubview(myLabel);

我认为这里的重点是:

            myLabel.TextAlignment = UITextAlignment.Left;
            myLabel.LineBreakMode = UILineBreakMode.WordWrap;
            myLabel.MinimumScaleFactor = 1;
            myLabel.AdjustsFontSizeToFitWidth = true;

-2

该代码根据文本返回大小高度

+ (CGFloat)findHeightForText:(NSString *)text havingWidth:(CGFloat)widthValue andFont:(UIFont *)font
 {
    CGFloat result = font.pointSize+4;
    if (text) 
{
        CGSize size;

        CGRect frame = [text boundingRectWithSize:CGSizeMake(widthValue, 999)
                                          options:NSStringDrawingUsesLineFragmentOrigin
                                       attributes:@{NSFontAttributeName:font}
                                          context:nil];
        size = CGSizeMake(frame.size.width, frame.size.height+1);
        result = MAX(size.height, result); //At least one row
    }
    return result;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.