滚动时Tableview单元格中Label的自动收缩功能不起作用

时间:2017-08-14 18:00:48

标签: ios uitableview autolayout uilabel

我在tableview的自定义单元格中并排有两个标签。当我第一次将数据添加到其中时,它看起来像这样:

enter image description here

这很好,是必需的设计。

当我开始滚动tableview时出现问题。在查看tableview后,它会发生这样的变化:

enter image description here

第一个标签添加了自动收缩功能,但第二个标签没有。我正在故事板中做所有事情,除了数据包装部分。 如果我做错了,请告诉我。

任何帮助将不胜感激。

**编辑:**

我在项目中添加的自定义单元格:

enter image description here

我通过选择突出显示了两个标签。

第一个标签的约束是:

enter image description here

我还在第一个标签中添加了自动收缩功能:

enter image description here

第二个标签的约束是:

enter image description here

我还没有在第二个标签中添加自动缩小功能,因为我必须在第二个标签中保留固定的字体大小。

1 个答案:

答案 0 :(得分:0)

最后,在阅读了有关'data//1.csv' from pandas.io.excel import ExcelWriter import pandas ext = '.csv' n_files = 13 with ExcelWriter('data//my_excel.xlsx') as ew: for i in range(1,n_files+1): pandas.read_csv('data//'+str(i)+ext) .to_excel(ew, index = False, sheet_name=str(i), encoding='utf-8') 的更多内容后,我得到了解决方案。

感谢这个博客:

我更改了优先级如下:

对于First label:

enter image description here

对于第二张标签:

enter image description here

它工作得很好。