如何为ios6和iphone 5提供应用程序支持

sta*_*one 1 iphone ios ios6 iphone-5

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

我在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;
    }
}
Run Code Online (Sandbox Code Playgroud)

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

提前致谢.

Mun*_*ndi 6

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

其余的应该"正常工作".