I've already created and finished the iPhone version of my app, and before I submit it want to create the iPad version in the same file.
I've used storyboards, so would I have to create a whole new storyboard for the iPad side of it, then link the same code, and then somehow tell the app to run one of the storyboards at runtime? That seems to be what I've extracted from the internet). Can someone explain?
I tried laying out the following in the appdelegate.m
UIDevice* thisDevice = [UIDevice currentDevice];
if(thisDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad)
{
// iPad
}
else
{
// iPhone
}
but don't know where to go from here.