是否可以像在UITextView
那样在UILabel
具有多行文本,还是应该改用第二行?
#1楼
您可以使用\\r
转到下一行,同时使用NSString
填充UILabel
。
UILabel * label;
label.text = [NSString stringWithFormat:@"%@ \r %@",@"first line",@"seconcd line"];
#2楼
myUILabel.numberOfLines = 0;
myUILabel.text = @"your long string here";
[myUILabel sizeToFit];
#3楼
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中对我不起作用,不确定原因。 尝试使用带属性文本和不带属性文本的情况。 有什么建议么。
#4楼
使用它可以在UILabel
包含多行文本:
textLabel.lineBreakMode = NSLineBreakByWordWrapping;
textLabel.numberOfLines = 0;
迅速:
textLabel.lineBreakMode = .byWordWrapping
textLabel.numberOfLines = 0
#5楼
让我们尝试一下
textLabel.lineBreakMode = NSLineBreakModeWordWrap; // UILineBreakModeWordWrap deprecated
textLabel.numberOfLines = 0;
#6楼
UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 150, 30)];
[textLabel sizeToFit];
textLabel.numberOfLines = 0;
textLabel.text = @"Your String...";
#7楼
UILabel *labelName = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
[labelName sizeToFit];
labelName.numberOfLines = 0;
labelName.text = @"Your String...";
[self.view addSubview:labelName];
#8楼
尝试使用此:
lblName.numberOfLines = 0;
[lblName sizeToFit];
#9楼
您也可以通过情节提要进行此操作:
- 在视图控制器上选择标签
- 在“属性”检查器中,增加“线”选项的值(按Alt + Cmd + 4以显示“属性”检查器)
- 双击视图控制器中的标签,然后编写或粘贴您的文本
- 调整标签大小和/或增加字体大小,以便可以显示整个文本
#10楼
已回答,但您也可以在情节提要中手动进行。 在“标签的属性检查器”下,可以将“换行符”更改为“自动换行”(或“自动换行”)。
#11楼
在此函数中,您要在标签中分配的传递字符串并通过字体大小代替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;
}
#12楼
该代码根据文本返回大小高度
+ (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;
}
#13楼
您应该尝试这样:
-(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;
}
#14楼
使用Story Borad:选择标签以将行数设置为零…… 或参考此
#15楼
在代码或情节提要中设置以下内容
Label.lineBreakMode = NSLineBreakByWordWrapping; Label.numberOfLines = 0;
并且请不要忘记为标签设置左,右,顶部和底部约束,否则它将无法正常工作。
#16楼
迅捷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
#17楼
这些东西帮助我
更改UILabel的这些属性
label.numberOfLines = 0;
label.adjustsFontSizeToFitWidth = NO;
label.lineBreakMode = NSLineBreakByWordWrapping;
在输入字符串时,请使用\\ n在不同的行中显示不同的单词。
范例:
NSString *message = @"This \n is \n a demo \n message for \n stackoverflow" ;
#18楼
在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;
#19楼
斯威夫特4:
label.lineBreakMode = .byWordWrapping
label.numberOfLines = 0
label.translatesAutoresizingMaskIntoConstraints = false
label.preferredMaxLayoutWidth = superview.bounds.size.width - 10
#20楼
方法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
#21楼
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);
//...
}
#22楼
我发现的最佳解决方案(对于应该在框架中解决的令人沮丧的问题)类似于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;
#23楼
如果必须使用:
myLabel.numberOfLines = 0;
属性,您还可以在代码中使用标准换行符("\\n")
强制换行。
#24楼
我找到了解决方案。
只需添加以下代码即可:
// 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
。
#25楼
在IB中,将行数设置为0(允许无限行)
使用IB在文本字段中键入内容时,请使用“ alt-return”插入一个返回符并转到下一行(或者您可以复制已经由行分隔的文本)。