我在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的应用程序。但我知道在哪里放上面的代码。任何人都可以使用这个代码,请与我分享。
提前致谢。
答案 0 :(得分:6)
5.0
,以支持iOS 5 +设备。Default-568h@2x
。其余的应该"只是工作"。