-2

我在 iOS 5 中开发了一个应用程序,但现在我想在 iOS 6 中转换相同的应用程序,并且也适用于以前的版本。谁能详细解释我如何实现此功能?提前致谢。

4

1 回答 1

0

IOS 5 应用程序在 IOS 6 上运行良好。只有它显示在中心,因为在 IOS 6 中高度增加了。

如果要为 IOS 6 创建新版本,请单独创建创建视图,如下所示。

float height = [UIScreen mainScreen].bounds.size.height;

if(height==568)
{
      //give frames according to IOS 6    
}
else
{
      //give frames according to IOS 5    
}
于 2012-11-26T10:22:17.537 回答