正确调整行高
在表格单元格中显示动态数据给我带来了问题。我正在使用
[titleString sizeWithFont:[UIFont systemFontOfSize:14] constrainedToSize:CGSizeMake(285,9999) lineBreakMode:UILineBreakModeWordWrap];
函数根据我需要调整行大小的大小来计算大小。但它不一致,有时它给出尺寸(242,18)和(40,18)(显示宽度,高度)。当它为相同的高度提供更多的宽度时,它会分成两行文本并且开始不一致。如果我采用较小的高度,那么它会溢出文本,如果高度较小,那么一段时间会留下巨大的空白。
请帮助我并建议一些正确的方法来做到这一点。
Showing dynamic data in table cell make problem for me. I am using
[titleString sizeWithFont:[UIFont systemFontOfSize:14] constrainedToSize:CGSizeMake(285,9999) lineBreakMode:UILineBreakModeWordWrap];
function for calculating the size now according to size i need to adjust row sizes. but it is inconsistent, Some time it give size(242,18) and (40,18) (showing width,height). when it gives more width for same height the it breaks in two line text and inconsistency begins. if i take less height then it overflow the text and if less in height then some time left a huge white space.
please help me and suggest some proper way for doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的代码看起来我是正确的,您的代码中只剩下一个需要修改的地方,即使用
CGFLOAT_MAX
而不是9999
。并且还要检查 lineBreakMode 属性,将
numberOfLines
指定为 零。you code seem me correct , there is only one place for modification left in your code that would be use
CGFLOAT_MAX
instead of9999
.And Also check the lineBreakMode property, Assign
numberOfLines
With zero.有委托方法如下
There is delegate method as follows