hungbm06
hungbm06

Reputation: 1549

How to make a application with target is iPhone/iPad

I want to make a application which can run complete in iPhone and iPad (full mode, not x2 mode). Please help me. Thank in advance!
I found down a config called "Targeted Device Family", but I still don't know what about design (for iPhone, iPad), how to show UI if device is iPhone, how to show UI if device is iPad.

Upvotes: 0

Views: 1651

Answers (3)

Malte Onken
Malte Onken

Reputation: 769

Target Device Family: iPad/iPhone. You need then two xib-Files if you want two different designs. One for the iPad Resolution and one for the iPad resolution. Like MainWindow-iPad.xib and MainWindow-iPhone.xib or you implement a recognition of the device in your code.

For more information look into this thread.

Upvotes: 1

Rob Napier
Rob Napier

Reputation: 299265

See "Creating a Universal Application" in the iOS Application Programming Guide for details on how to set this up in Xcode, and what pieces you need to provide.

Upvotes: 2

Martin Herman
Martin Herman

Reputation: 888

You need to create a Universal iOS app :) google "convert iPhone app into universal app". Things get a lot easier when your project is done in interface builder.

Upvotes: 0

Related Questions