正确调整行高

发布于 2024-11-16 00:03:34 字数 362 浏览 5 评论 0原文

在表格单元格中显示动态数据给我带来了问题。我正在使用

[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 技术交流群。

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

发布评论

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

评论(2

青巷忧颜 2024-11-23 00:03:34

您的代码看起来我是正确的,您的代码中只剩下一个需要修改的地方,即使用 CGFLOAT_MAX 而不是 9999

并且还要检查 lineBreakMode 属性,将 numberOfLines 指定为

label.numberOfLines = 0;
label.lineBreakMode = UILineBreakModeWordWrap;  

you code seem me correct , there is only one place for modification left in your code that would be use CGFLOAT_MAX instead of 9999.

And Also check the lineBreakMode property, Assign numberOfLines With zero.

label.numberOfLines = 0;
label.lineBreakMode = UILineBreakModeWordWrap;  
英雄似剑 2024-11-23 00:03:34

有委托方法如下

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
      if (indexPath.row == theRowWhereUwantToIncreaseTheSize) 
      {
           return 105.0f;;
      }
}

There is delegate method as follows

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
      if (indexPath.row == theRowWhereUwantToIncreaseTheSize) 
      {
           return 105.0f;;
      }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文