0

我在我的一个 UIView 中使用自动布局功能,根据文档,我没有为 iPad 和 iPod 创建单独的 xib,我已经为 iPad 创建了一个 xib,并尝试将其用于具有自动布局功能的 iPod,一切正常但是我使用的滚动视图的内容大小与 iPad 相同,因此它向下滚动很长时间,我附上了图片以供参考,请检查此内容并让我知道如何处理这种情况。 在此处输入图像描述

注意:这里的问题是我无法为 AutoLayout 调整大小的视图大小。

谢谢你的时间:)

4

1 回答 1

0

设置浓缩:

if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone )
    {
       // set your  requirement size
        [yourscrollview setContentSize:CGSizeMake(320, 600)];
    }
    else
    {
      // set your  requirement size
       [yourscrollview setContentSize:CGSizeMake(768, 1100)];
    }
于 2013-07-26T04:56:56.220 回答