sizeWithFont: constrainedToSize: with UITextView (有时) 没有创建正确的高度 - iPhone
我使用以下代码来确定添加到 UITableViewCell
的 UITextView
所需的高度,并确定每个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用
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).如果表格处于组模式,请注意填充。在 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.