gpt4 book ai didi

ios - UILabel 不显示所有文本

转载 作者:行者123 更新时间:2023-11-30 11:09:00 24 4
gpt4 key购买 nike

我正在尝试创建一个用作测验的 iOS 应用程序,但我遇到了显示问题。以下是测试发生的情况:

测验的一个问题示例

Example of one question of the quiz

但是问题并没有完全显示出来。问题是:“在法国,depuis les les débuts de la Ve République,combin y a-t-il eu de présidents différents élus?”

我向您展示 UILabel 信息:

UILabel informations

你能帮我吗?

非常感谢您的帮助:)!

最佳答案

只需按照下面的代码操作即可。

// 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;

关于ios - UILabel 不显示所有文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52388610/

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