0

我需要根据条件显示不同的信息。我有时需要带有部分的根元素,而在其他情况下,我需要填充数据的表格视图。当我初始化 Root 元素甚至是空的,然后在设备旋转时创建一个 tableview 时,我在顶部有 Root 元素和来自 tableview 的数据。如何保留表格视图以保持领先?

4

1 回答 1

0

我刚刚解决了在视图控制器中覆盖 DidRotate 方法的问题:

public overridevoid DidRotate (UIInterfaceOrientation fromInterfaceOrientation)
{
    // Stop event execution in order not to redraw some UI elements incorrectly
}
于 2012-12-13T11:58:39.980 回答