1

我已经尝试了这篇文章中图像的解决方案。但是,它仅在第一次加载屏幕时起作用,当应用程序从屏幕的子级再次返回该屏幕时,它会返回切断 tableview。

在我 NSLog viewWillAppear 中的 tableview 高度之后:

340.00 (tableview first loaded)
245.00 (tableview re-appeared)

有什么我想念的吗?

我也尝试添加

tableResult.autoresizingMask &= ~UIViewAutoresizingFlexibleBottomMargin;

tableResult.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleHeight ;

但它们都不起作用。

4

1 回答 1

3

您应该将表格的高度设置为灵活:

tableResult.autoresizingMask = UIViewAutoresizingFlexibleHeight;
于 2013-04-17T09:07:21.007 回答