gpt4 book ai didi

ios - UILabel 不调整大小

转载 作者:行者123 更新时间:2023-11-29 02:50:24 24 4
gpt4 key购买 nike

我在 UITableViewCell 中有一个 UILabel

我用这个字符串设置文本:

@"Tes blablabla\nTes blablabla\nTes blablabla\nTes blablabla\nTes blablabla\nTes blablabla\nTes blablabla"

它应该显示 7 行,对吧?但它没有。它只显示第一行。我在 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

使用这段代码
[cell.lblComment setText:[commentDict objectForKey:@"comment"]];
[cell.lblComment sizeToFit];

这是怎么回事?我也将行数设置为 0..

最佳答案

您需要以编程方式添加第二行,或根据您采用的方法在 Storyboards 中设置它:

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

关于ios - UILabel 不调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24607256/

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