temporary_user_name
temporary_user_name

Reputation: 37108

How can I simulate an iPhone app running on an iPad?

My app keeps getting rejected from the app store based on this rule:

2.10 iPhone Apps must also run on iPad without modification, at iPhone resolution, and at 2X iPhone 3GS resolution

I'm trying to figure out how I can test whether my fix is working. How can I simulate "running on an iPad at iPhone resolution" and how can I confirm that it work correctly at both resolutions?

Upvotes: 3

Views: 592

Answers (2)

temporary_user_name
temporary_user_name

Reputation: 37108

In info.plist, for the key "Supported interface orientations (iPad)" removing any landscape orientations and leaving only Portrait (bottom home button) fixed my problem.

Upvotes: 0

LinusG.
LinusG.

Reputation: 28952

What you can do is to choose an iPad Simulator from the schemes-dropdown menu and run it on there even though it is an iPhone-only application. If it runs fine on there, you should be good to go.

Hope that helps :)

Upvotes: 1

Related Questions