Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

When a user uses an iPhone app on the iPad, they have the option to double the view to fit the iPad. My application has over 100 view controllers and 800 segues. Is there an app delegate api or line of code that I can use to automatically do this for the user (the interface would be iPad friendly despite not having any over-rated split views)?

share|improve this question
This question was answered previously on Stack Overflow: stackoverflow.com/questions/2680392/… – logixologist Jun 18 at 0:12
Not all iPad apps have those "over-rated" split views. – Abizern Jun 18 at 8:17

marked as duplicate by Undo, rmaddy, lnafziger, Abizern, dragon112 Jun 18 at 9:39

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

The interface would not be iPad friendly as all of your graphics pixel resolutions would be halved (as would the built-in UI pixel resolutions - the 2x setting just does pixel-doubling).

You can make an iPad-friendly interface by designing for the iPad. At very least all you need to do is ensure appropriate settings in autolayout or using autoresizing masks, with no need for a separate storyboard or separate xibs. But you would need to do at least that. iPad design does not come for free.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.