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

时间:2012-09-24 06:21:32

标签: iphone ios ios6 iphone-5

我在App Store中有一个应用程序,我需要为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;
    }
}

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

提前致谢。

1 个答案:

答案 0 :(得分:6)

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