1

我在 App Store 中有一个应用程序,我需要为 ios6 和 iphone5 更新该应用程序。当现有应用程序已经提交到应用商店时,要采取哪些步骤来更新现有应用程序?

我在mac中安装了xcode4.5。如果我在 iOS 6 中构建应用程序,iOS 5 是否支持它?我应该如何制作同时支持 iOS 5 和 iOS 6 的应用程序?

编辑

   public static bool IsTall
    {
        get {
            return UIDevice.CurrentDevice.UserInterfaceIdiom
            == UIUserInterfaceIdiom.Phone
            && UIScreen.MainScreen.Bounds.Height
            * UIScreen.MainScreen.Scale >= 1136;
        }
    }

static UIImage tableViewBackgroundImage = null;
public static UIImage TableViewBackgroundImage
{
    get
    {
        if (tableViewBackgroundImage == null)
            tableViewBackgroundImage = IsTall 
                ? UIImage.FromFile("Images/TableViewBackground-568h@2x.png")
                : UIImage.FromFile("Images/TableViewBackground.png");
        return tableViewBackgroundImage;
    }
}

我用上面的代码为 iphone 5 制作应用程序。但我不知道把上面的代码放在哪里。任何人都可以使用这个代码,请与我分享。

提前致谢。

4

1 回答 1

6
  1. 确保摘要中的部署目标 设置5.0为支持 iOS 5+ 设备。
  2. 为 iPhone 5Default-568h@2x启动图像添加图像。
  3. 检查xib 文件和情节提要中的自动调整大小元素,以在 3.5 英寸和 4 英寸显示器上产生可接受的结果(您可以在模拟器中检查)。

其余的应该“正常工作”。

于 2012-09-24T06:26:41.163 回答