Robert Gould
Robert Gould

Reputation: 69835

How do you setup Eclipse to work on iPhone development (instead of Xcode)?

Although I've been getting more and more familiar with Xcode while developing for the iPhone, there are times I just wished I had a better IDE, something like Eclipse.

So I was wondering does anyone know how to migrate iPhone projects to Eclipse, and if it's worth it?

Upvotes: 51

Views: 69155

Answers (5)

MadyZaid
MadyZaid

Reputation: 11

There's cross compiling that give you ability to develop IPhone apps on eclipse http://www.youtube.com/watch?v=TG-NIt2O5J8

Upvotes: 1

YvesLeBorg
YvesLeBorg

Reputation: 9079

Late in the game, but you might want to kick the tires with JetBrains's AppCode, eventually a full feature drop-in replacement for xCode ... and very similar to IntelliJ (GUI, work flows, etc...). Still Early Adopter as of now, it performs some tasks rather well. I still use xCode for configuring the build options and targeting the device, but that will eventually be taken care of.

regards

Upvotes: 2

Dayakar
Dayakar

Reputation: 1

There are no plugins that support Apple IOS application development in Eclipse but on windows, you can develop using Adobe CS5. This is one of the powerful tool from Adobe in which you can develop .ipa applications on windows but you need some stuff to be ready before you start developing IOS applications using Adobe CS5

Upvotes: -2

Rob Drimmie
Rob Drimmie

Reputation: 1586

XCode largely uses standard Unix tools for a lot of its work. iPhone applications are compiled using GCC 4.0, it uses gdb for debugging, so it should be possible to set up Eclipse to at least compile applications.

If you look in the Build section of the Project Info pane (select the project, hit the Info button in XCode, choose the Build tab from the top) you can see many of the options.

I'm not sure what is required to copy a file to the simulator and attach a debugger to do a test run, it might not be worthwhile to jump through all the hoops and Apple may require an XCode generated build to accept an app into the App Store.

It may be the case that for regular code editing you can work reasonably well in Eclipse, then switch to XCode for interactive debugging.

Most of the existing Eclipse plugins seem to be oriented towards developer iPhone-aware web applications, so I'm not sure if you'll get any help there.

Upvotes: 12

user28515
user28515

Reputation: 57

As far as I know you cant use Eclipse or any other IDE to develop for iPhone. Apple only supports XCode and this wont change in the future. So I think you have to get used to XCode.

Upvotes: 3

Related Questions