2012-09-24 70 views
1

我已經在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任何人使用此代碼,請與我分享。

在此先感謝。

+0

http://stackoverflow.com/questions/12395200/how-to-develop-or-migrate-apps-for-iphone-5-screen-resolution – Ramz

回答

6
  1. 確保摘要中部署目標設置爲5.0支持設備iOS 5以上。
  2. 添加圖像[email protected]啓動圖像iPhone的 5.
  3. 檢查自動調整大小在廈門國際銀行文件和故事板元素,以產生可接受的結果既在3.5英寸和4英寸顯示器(你可以登記模擬器)。

其餘部分應該 「只是工作」。

+0

感謝您的快速回復,所以我只是想設置eploymnet目標的coe爲5.0時,我使存檔的權利?我有默認的PNG爲iphone5.but最後的事情是非常難以unerstand,如何使xib支持iphone和iphone5.is任何簡單的方法學習它? – stackiphone

+0

不,你只需要嘗試一下。運行於5.1和6.0模擬器並進行比較。 – Mundi

+0

+1用於設置部署目標 –

相關問題