Francis Barbotin
Francis Barbotin

Reputation: 1

New Xcode 3.2.6 only for iPhone 4?

I am wondering if using Xcode 3.2.6 will create apps that will work with all iphones, should I use an older version ? Sorry I am green at this

Upvotes: 0

Views: 577

Answers (1)

John Parker
John Parker

Reputation: 54445

You can use both Xcode 3.x and 4.x to develop applications for both Mac OS X and all of the iOS devices. You can simply select a target iOS version within your project, although you're still responsible for ensuring that you don't use iOS calls that aren't available in that version. (instancesRespondToSelector: is your friend, etc.)

However, I'd be tempted to use the latest version (4.0.1 as of the time of writing), which is available from https://developer.apple.com/xcode/ (a developer account login will be required), if only because Xcode 4 has the Interface Builder built in, has Git support out of the box, etc.

Upvotes: 2

Related Questions