我已經在App Store應用程序一個應用程序的支持,我需要更新iOS6的和iphone5的該應用程序。當已經提交到應用程序商店時更新應用程序的步驟是什麼?如何使iOS6的一個iphone 5
我在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/[email protected]")
: UIImage.FromFile("Images/TableViewBackground.png");
return tableViewBackgroundImage;
}
}
我gopt上面的代碼,使應用程序的iPhone 5.but我IDNT知道從哪裏把上面code.can任何人使用此代碼,請與我分享。
在此先感謝。
http://stackoverflow.com/questions/12395200/how-to-develop-or-migrate-apps-for-iphone-5-screen-resolution – Ramz