sizeWithFont: constrainedToSize: with UITextView (有时) 没有创建正确的高度 - iPhone

发布于 2024-10-10 18:34:19 字数 745 浏览 3 评论 0原文

我使用以下代码来确定添加到 UITableViewCellUITextView 所需的高度,并确定每个 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);< 创建框架时/code> 并将该 frame 分配给 UITextView ,它(有时)会出现短缺。

I am using the following code to determine the height needed for a UITextView that is being added to a UITableViewCell, and also to determine the height for each UITableViewCell.

This works 90% of the time, but some incoming data (always the same incoming data) comes up short. If I allow scrolling within the UITextView, I can see that all the text is in the UITextView - but the UITextView does not have enough height to display all the text.

There does not appear to be anything wrong with the text that is being read, no special or hidden characters, etc.

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

When I then create a frame with frame = CGRectMake(boundsX, yPosition, 230, size.height); and assign that frame to the UITextView , it (sometimes) comes up short.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幻想少年梦 2024-10-17 18:34:19

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

don't use UITextView. seems TextView have margin&padding configured by apple.
using UILabel instead. (don't forgot to set EnableMultiLine to YES).

何其悲哀 2024-10-17 18:34:19

如果表格处于组模式,请注意填充。在 cellForRowAtIndexPath 或 heightForRowAtIndexPath 时,单元格具有屏幕宽度,而不具有组样式表的填充。

If table is in group mode, watch out for paddings. At the time of cellForRowAtIndexPath or heightForRowAtIndexPath, cell has screen width, not with padding of group style table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文