我制作了一个iPad应用程序,我想支持方向,所以我写了这段代码:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
//return YES;
return (interfaceOrientation==UIInterfaceOrientationPortrait||interfaceOrientation==UIInterfaceOrientationLandscapeLeft||interfaceOrientation==UIInterfaceOrientationLandscapeRight);
}
我在纵向模式下创建了一些表格,因此当我旋转我的应用程序时,表格仍按照纵向模式进行,但我视图中的表格不会自动调整大小。
答案 0 :(得分:0)
您需要确保将表格视图本身设置为在自动调整时在两个方向上展开和收缩 - 这是在IB中通过单击表格视图,然后单击标尺侧边栏标题选项卡,然后确保所有自动调整选项都已打开 - 调整两个方向的大小,粘贴到所有角落。