gpt4 book ai didi

ios - 如何在同一个 UILabel 中添加多行

转载 作者:行者123 更新时间:2023-11-29 03:33:38 26 4
gpt4 key购买 nike

有什么方法可以在 UILabel 中包含多行文本?

我不希望 View 中有超过 1 个标签。

如何在单个 UILabel 中添加多行??

最佳答案

是的,有办法。只需添加 UILabel 的两个属性即可,即

  1. NumberOfLines=0 它允许您在 UILabel

    中添加多行
  2. LineBreakMode = NSLineBreakByWordWrapping 它允许您按单词断句。您也可以根据您的要求进行更改。

    [YourLabel setNumberOfLines:0];
    [YourLabel setLineBreakMode:NSLineBreakByWordWrapping];

您还可以从界面构建器中设置这两个属性

enter image description here

enter image description here

关于ios - 如何在同一个 UILabel 中添加多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19462200/

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