vote up 2 vote down star

I've been a Java developer for 10+ years now, and have come to love the power that modern IDEs provide for things like refactoring, finding dead code, finding "usages of", etc. I'm starting to do some iPhone dev on the side, and am utterly frustrated by the lack of such features in XCode. There is no "find usages of this method/class" that I know of, so I resort to doing "find X in project", and even that sometimes misses things (why??!)

I realize that some of these things are perhaps not possible in Objective-C, owing to Java's strong type system and built-in reflection APIs. But even simple things seem to be missing, or at best hard to find. For example, there is no keybinding for "reformat this code"; you have to go to the Edit menu and then navigate 2 submenus to do that.

Has anyone had success in using another IDE for Objective-C/iPhone development? Eclipse? I'm a big fan of Intellij IDEA, but it has no such support, as far as I am aware. Failing that, pointers for setting up XCode would be highly appreciated.

flag

1  
Regarding keyboard shortcuts: You can create your own keyboard shortcuts for any menu command in System Preferences. – Chuck Apr 29 at 17:59
1  
One custom binding I find really helpful is to bind Cmd-Opt-; (semicolon) to re-indent - I can press the key combo anywhere on a line to properly reformat a line, or select a block of code to reformat with it. Re-Indent is not bound to anything by default. – Kendall Helmstetter Gelner May 1 at 7:20

8 Answers

vote up 14 vote down check

I had the same issue when I first started using it. So, I asked a friend who worked for Apple whether XCode is really the tool most internal developers use.

He said it was, and his explicit recommendation was just to bite the bullet and get used to it. You might be able to find an alternative, but you'll be fighting this forever instead of building iPhone apps. Sometimes, when you're in Rome, you must do as Romans do.

link|flag
1  
I tend to agree about not wanting to "fight this forever". Good to know that Apple eats its own dogfood. As thesamet notes below, it's possible to create my own shortcuts, so I will probably take this as the path of least resistance... thanks! – Kaffeine Coma Apr 29 at 19:27
vote up 1 vote down

The ObjectivEClipse project is a new effort to add ObjectiveC support to Eclipse CDT. Its still very young but if anyone here is willing to participate in open source development please take a look.

link|flag
vote up 3 vote down

The XCode tricks and tips thread has some real gems - I encourage you to read it if you haven't already.

link|flag
Thanks Jane. Tried to contact you at ambientindustries, but the address in the mailto on your site just bounces. :-( – Kaffeine Coma May 2 at 16:32
we're firstname @ ambientindustries dot com. Try rog if jane bounces. – Roger Nolan May 5 at 9:48
vote up 0 vote down

There is a command line utility called xcodebuild. You can set up a project in Xcode so that Xcode generates all the necessary files and whatever else it does, but you can use any external editor you like. All you have to do is run xcodebuild in the same directory as the Xcode project itself and it will build it. You can even choose which target and which build configuration you want to use from the command line.

It's a bit of a silly idea since you'll have to deal with more than one IDE, but I've done it on occasion because sometimes I find it easier to develop on the command line.

link|flag
vote up 0 vote down

While not a true IDE, if advanced text editing is what you're after, TextMate is extremely powerful. It handles a wide variety of languages, and has user-created extensions (bundles) that add a lot of interesting functionality. It's particularly good at the kind of reformatting operations you describe. I use it for all sorts of text editing.

However, I do all of my Mac / iPhone development in Xcode. I've tried other tools, like TextMate, but I keep coming back to this IDE. Almost all experienced Mac developers that I've met use Xcode and most are happy with its functionality and layout. It may be that you need to adjust to the design of this IDE, as opposed to Eclipse or Visual Studio. Frankly, I was not impressed with those IDEs (or KDevelop, where I'd done some Linux work) and found that Xcode fit me well.

As has been stated, Xcode 3.0 and 3.1 brought some significant improvements to the IDE.

link|flag
vote up 6 vote down

1) There are refactoring tools in the IDE. You can select a class or variable name and opt to refactor to rename.

2) Use the shortcuts, and the extra features - You can quickly swap between header and implementation files with Cmd-Alt-Up. Alt-Double Click brings up documentation for a framework call, and Cmd-Double Click will jump to the definition of a variable or method.

3) I usually use "find selected text in project" to look for uses of a method - I'm not sure why that would not work for you always.

4) If you want to find some interesting issues there's a great static analyzer you can run over your code, the CLANG scan-build:

http://clang.llvm.org/StaticAnalysisUsage.html

5) I think IB is better than any Java GUI designer I've ever used.

XCode and IB and Instruments together are actually very powerful tools, spend time researching what they can do for you...

Also if you really feel the need for more advanced editing features, there's nothing wrong with jumping out to external editors from time to time if they can do other things for you. A very popular one is TextMate, I also continue to use emacs from time to time.

link|flag
vote up 4 vote down

I still have some trouble adapting to XCode too, but it's getting better the more I use it. I am using vim for everything else but Cocoa programming.

One thing that I found helpful was putting this Xcode keyboard shortcut list next to my monitor.

For menu items that miss keyboard shortcuts, like "Reformat this code", use these instructions to define your own shortcuts.

link|flag
Wow, that's awesome. This will definitely ease the pain of switching back and forth from Intellij/XCode if I can use the same shortcuts. – Kaffeine Coma Apr 29 at 19:28
vote up 0 vote down

I'm really not intending on trying to belittle your question, but VIM, make, and gcc work great for me for ALL languages and platforms. It's the one toolset that (for me) is the most portable and reliable. It's not a pretty as you may like, but it gets the job done just as efficiently.

link|flag
2  
Sledge- I used to be a hardcore command-line and Emacs guy. I resisted using an IDE for years, thinking "who needs this intellisense crap?" Then I had the pleasure of working on a nearly 1M LoC codebase with several other developers, and realized just how useful an IDE is for code navigation alone. – Kaffeine Coma Apr 29 at 17:26
Thing is, emacs doesn't have to be primitive. Sure, it doesn't have intellisense yet (though, I know this is being worked on), but nearly every other cool feature is there if you are willing to do some work... – dicroce Apr 29 at 17:46
Yeah, I've used Eclipse, VS, et. Al. but I keep going back to VIM. – sledge Apr 30 at 15:13
@sledge then you must be doing something wrong. – foljs May 14 at 18:21

Your Answer

Get an OpenID
or

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