Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove iPad support from my app?

Tags:

xcode

ios

I created an app with an iPad storyboard, but we've decided not to support iPad to start with. Do I need to disable this somewhere in my project, or delete it? Can't seem to find any information on editing it after the project has been created.

like image 687
tomjung Avatar asked Dec 12 '13 03:12

tomjung


People also ask

How do I unlink my iPhone apps from my iPad?

On your iPhone, iPad, or iPod touch, go to Settings > [your name] > iTunes & App Store. Under Automatic Downloads, turn on or turn off Apps.

How do I clean up apps on iPad?

If you touch and hold an app from the Home Screen and the apps start to jiggle: Tap the Remove icon in the upper-left corner of the app. Tap Delete App, then tap Delete to confirm. Tap Done.

Are iPad screenshots required for App Store?

On the iOS App Store, you must provide a set of screenshots for all device types. For iPhone, at the minimum, you need one set of screenshots for the 5.5-inch display, and for iPad, you need at least one set for the 12.9-inch display.


1 Answers

At a minimum you have to disable support for iPad. To do that:

Click the target in the project explorer. In the General Tab there is a section called Deployment info. For Devices change the selection from Universal to iPhone.

example

You can then delete the iPad storyboard from the project explorer.

example2

like image 172
JuJoDi Avatar answered Sep 27 '22 18:09

JuJoDi