我已經創建並完成了我的應用的iPhone版本,在提交之前,它想要在同一個文件中創建iPad版本。如何讓這個iPhone應用程序在iPad上工作?
我已經使用故事板,所以我必須爲iPad的一面創建一個全新的故事板,然後鏈接相同的代碼,然後以某種方式告訴應用程序在運行時運行故事板之一?這似乎是我從互聯網上提取的)。有人可以解釋嗎?
我試圖鋪設在appdelegate.m
UIDevice* thisDevice = [UIDevice currentDevice];
if(thisDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad)
{
// iPad
}
else
{
// iPhone
}
以下,但不知道從哪裏何去何從。
首先要做的是在項目設置中啓用iPad。 –
您閱讀了13個教程,並且設法擺脫它們的所有內容都是'if(thisDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad)'??? – nhgrif
[如何製作通用iOS應用? (iPhone和iPad w/Storyboards)?](http://stackoverflow.com/questions/21976558/how-to-make-a-universal-ios-app-iphone-and-ipad-w-storyboards) –