vote up 2 vote down star
1

I would prefer to create my interfaces programatically. Seems as if all the docs on Apple Developer assume you're using Interface Builder. Is it possible to create these interfaces programatically, and if so where do I start learning about how to do this

I thought the relevant document for this, if possible would be in this section: http://developer.apple.com/referencelibrary/Cocoa/idxUserExperience-date.html

flag

3 Answers

vote up 15 vote down check

I would prefer to create my interfaces programatically.

Why? Interface Builder is easier and faster. You can't write a typo by drag and drop, and you don't get those oh-so-handy Aqua guides when you're typing rectangles by hand.

Don't fight it. Interface Builder is your friend. Let it help you.

If you insist on wasting your own time and energy by writing your UI in code:

Not document-based (generally library-based, like Mail, iTunes, iPhoto): Create a subclass of NSObject, instantiate it, and make it the application's delegate, and in the delegate's applicationDidFinishLaunching: method, create a window, populate it with views, and order it front.

Document-based (like TextEdit, Preview, QuickTime Player): In the makeWindowControllers method in your subclass of NSDocument, create your windows (and populate them with views) and create window controllers for them, making sure to send yourself addWindowController: for each window controller.

link|flag
3  
Amen. I used to be of that "write everything myself" mindset. Then I learned what it meant to meet project deadlines. It's a real eye-opener. – unforgiven3 Apr 4 at 18:06
I triple that. Interestingly, I've had a few developers coming from the Java world recently also say they prefer to code the interface themselves... right up until they understood that IB doesn't generate any code and doesn't need to. Guess the IDE-generated swing code really sucks :-) – Jarret Hardie Apr 4 at 19:51
1  
"You can't write a typo by drag and drop" actually, I've discovered, you can.. I've caused weird application-crashing errors by accidently dragging to the wrong outlet or binding. Interface Builder is okay, but it's not foolproof (not to say creating interfaces by hand is any better, but if nothing else the errors in ObjC are a bit more.. obvious) – dbr May 4 at 1:32
vote up 0 vote down

Hmmm... I am trying to make an API that is cross platform. I don't care if anybody calls me crazy or stupid, but it can be done. I would like to use cocoa (instead of glut), as cocoa is native for the mac. For windows, the windows API. For the mac side, I need to do it programmatically. Will not listen to any criticism, so don't say anything. Any answers, please reply.

link|flag
Huh? (Oh, I need 15 characters) – mmc Jul 21 at 15:56
You might try posting this as an actual question, instead of an irrelevant answer to someone else's question. – Peter Hosey Jul 22 at 2:38
vote up 1 vote down

I like the question, and I'd also like to know of resources for going IB-less. Usefulness (the "why") is limited only by imagination. Off the top of my head, here are some possible reasons to program UIs explicitly:

  • Implementing a better Interface Builder.
  • Programming dynamic UIs, i.e., ones whose structure is not knowable statically (at compile/xcode time).
  • Implementing the Cocoa back-end of a cross-platform library or language for UIs.

There is a series of blog posts on working without a nib and a recent description by Michael Mucha on cocoa-dev.

link|flag

Your Answer

Get an OpenID
or

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