What should I consider to ensure seamless port of my iPhone apps to iPad?

后端 未结 4 999
小蘑菇
小蘑菇 2021-02-20 05:29

Following iPad\'s announcement and its SDK (iPhone SDK 3.2), porting apps to iPad becomes an important issue. What guidelines I should follow in my iPhone apps to ensure I can p

相关标签:
4条回答
  • 2021-02-20 05:48

    Judging by what has been said, absolutely nothing. You will have to adapt to the new screen size and better hardware all together, if you want to take advantage of the features that the improved device offers. The lack of a 3g module is also something to consider if your app(s) rely on that functionality.

    0 讨论(0)
  • 2021-02-20 05:54

    It is far more reasonable to expect users to input text (and larger amounts of it) than with a non-iPad device.

    0 讨论(0)
  • 2021-02-20 06:01

    If you've been using IB and setting the resize behaviors of elements properly, and also coding frame coordinates all relative to each other you are half-way to having a UI that can potentially scale to a larger screen.

    From the screen shots there are new kinds of action-sheets as well, potentially attached to UI elements instead of floating - if you use overlays today they will probably work about the same but you may want to consider changing placement from the center on larger display.

    UPDATE:

    Now the event is over, and registered developers can download the SDK - although we cannot talk about specific features here just yet, read through ALL of the documents related to the new OS version as there are a number of things aimed at helping you transition to supporting both platforms. Also before you start using custom libraries for things take a look through the API changes to see what new abilities might be supported that are not today.

    Generally speaking, what I said above about IB holds true, and also you should start thinking about how your apps today could use more space to present more information at once instead of being split out over multiple screens. Also if you are doing any projects right now that use images, make sure to initially design the images large enough that you can also use them for higher resolution tablet applications.

    0 讨论(0)
  • 2021-02-20 06:03

    Nothing, it appears. Although we don't have the SDK quite yet. It will all existing run iPhone app without an issue, albeit at reduced resolution.

    It remains to be seen how much of the existing iPhone SDK is shared with the iPad SDK UI wise.

    0 讨论(0)
提交回复
热议问题