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?

link|improve this question

Why is this a bad question? – Robert Gould Oct 16 '08 at 14:46
3  
I don't think it's a bad question, seems fair enough to me - modded up (back to 0) – RodeoClown Oct 17 '08 at 0:01
Thanks for the vote of confidence. I was really wondering what was wrong with the question, but it probably just didn't strike someone's fancy. – Robert Gould Oct 17 '08 at 1:39
feedback

7 Answers

up vote 11 down vote accepted

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.

link|improve this answer
1  
Xcode has some serious flaws, but one big reason to stick with it is code-signing. I don't believe that another IDE has the capability to sign your apps for testing on an actual device, or to sign an app for deployment to the App Store. Code-signing may not matter for jailbroken devices, but if you intend to sell via the App Store, you'll need to make sure it happens. – joshbuhler Jul 15 '09 at 4:03
feedback

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.

link|improve this answer
feedback

I don't believe that another IDE has the capability to sign your apps for testing on an actual device, or to sign an app for deployment to the App Store.

Signing is performed by the "codesign" utility, not the IDE))) In fact, the IDE does not do any building or debugging on its own. When you build with Xcode you can see a full external tools' invocation log with command names and parameters. Check the build log.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

The Aptana plugin can be a good choice:

http://www.aptana.com/iphone

I never tested it, but I use Aptana for frontend development and it's a solid and nice IDE.

link|improve this answer
3  
Aptana iPhone is for web applications development, not for native iPhone applications. – christian studer Jan 22 '09 at 14:30
feedback

Your Answer

 
or
required, but never shown

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