gpt4 book ai didi

ios - UILabel 中的多行文本

转载 作者:行者123 更新时间:2023-11-30 13:07:17 26 4
gpt4 key购买 nike

有没有一种方法可以在 UILabel 中像在 UITextView 中那样显示多行文本,还是应该使用第二行?

最佳答案

将换行模式设置为自动换行,并将行数设置为0:

// Swift
textLabel.lineBreakMode = .byWordWrapping
textLabel.numberOfLines = 0

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

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

恢复旧答案(供引用和愿意支持 iOS 6.0 以下版本的开发人员):

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

另一方面:无论如何,两个枚举值都会产生0

关于ios - UILabel 中的多行文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39183910/

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