gpt4 book ai didi

iphone - 带字体大小 : constrainedToSize: with UITextView is (sometimes) not creating correct height - iPhone

转载 作者:行者123 更新时间:2023-12-03 19:33:34 26 4
gpt4 key购买 nike

我使用以下代码来确定 UITextView 所需的高度正在添加到 UITableViewCell ,并确定每个 UITableViewCell 的高度。

这在 90% 的情况下有效,但某些传入数据(始终是相同的传入数据)会出现不足。如果我允许在UITextView内滚动,我可以看到所有文本都在 UITextView 中- 但是UITextView没有足够的高度来显示所有文本。

正在读取的文本似乎没有任何问题,没有特殊或隐藏字符等。

UIFont *font = [UIFont fontWithName:@"ArialMT" size:14];
CGSize withinSize = CGSizeMake(230, 10000);
CGSize size = [currentTimelineText sizeWithFont:font constrainedToSize:withinSize lineBreakMode:UILineBreakModeWordWrap];

当我用frame = CGRectMake(boundsX, yPosition, 230, size.height);创建一个框架时并分配 frameUITextView ,它(有时)会出现不足。

最佳答案

不要使用UITextView。似乎 TextView 有苹果配置的边距和填充。
使用 UILabel 代替。 (不要忘记将 EnableMultiLine 设置为 YES)。

关于iphone - 带字体大小 : constrainedToSize: with UITextView is (sometimes) not creating correct height - iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4596028/

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