vote up 8 vote down star
6

Interface Builder can be used for basic dependency injection in a Cocoa app, but is anyone aware of more complete dependency injection frameworks for Objective-C/Cocoa for when you don't want to instantiate objects in a NIB file?

Edit

To clarify, I recognize that IB can be used for basic DI, but I'm looking for a framework with more complete functionality, including separate production and testing configurations, along the lines of Groovy or Springs.

flag

5 Answers

vote up 5 vote down check

I think you'll find that you don't need it in late-binding languages like Objective C, Ruby, Lisp and so on. Like Jamis' revelation that he was going down an overly complex path when he tried to build needle, a DI framework for Ruby- Net::SSH revisited.

Here are some links that will hopefully give you some sample code to do similar things in Objective C. With categories you can essentially change any class's behavior at runtime. See Mac Developer Tips – Objective-C: Categories and the Cocoa API docs on categories. Essentially you don't need some central place to ask for "the thing that does x" that is configurable, because you can just instantiate TheThingThatDoesX directly and if something else needs to change/hook into that behavior it can use categories.

link|flag
I think it's telling that Brad Cox, the designer of Objective-C, has spent his life working on loose coupling and software reuse. The dynamic features of Objective-C are there to solve the problems DI solves for static languages. ieeexplore.ieee.org/iel2/190/… – Paul Jan 29 at 3:19
It's also telling that this Stack Overflow post is now the top Google result for "dependency injection objective-c" and "dependency injection cocoa". – Otto Jan 29 at 19:41
Categories are great - but I personally don't see how they get you around DI. Modifying an existing class is not the same as changing a full implementation. – tcurdt Jan 30 at 12:45
Better response, post caffeine - I was more trying to point toward the idioms to hopefully be more helpful than "nope you don't need to do that" without any kind of pointer to something that might help solve the need. – Otto Jan 30 at 13:38
1  
Does Core Data not do what you want? Remember, Obj-C uses duck typing, your view isn't going to care what kind of object it your controller gives it (assuming MVC, natch). I don't think I'm understanding the problem you want to solve. Maybe start a whole 'nother question with a specific example? – Otto Jan 31 at 0:22
show 2 more comments
vote up 0 vote down

DI is a property of a runtime execution enviroment requiring dynamic binding. I'm very new to Obj-C and Cocoa so I may speak out of turn. Unless I'm missing something, I don't see how one could implement DI except by interpreting Obj C rather than compiling it, or by modifying the runtime environment.

I suspect that the DI like behaviour of IB is because there is a domain specific runtime environment associated with apps that are built with it.

I'm happy to be corrected though.

Categories appear to be an implementation of mixin's, allowing dynamic dispatch of methods to a delegate. Rather cool and similar to Java's interface concept, thought the details differ and from the following, I can't see if constants can be defined in a category, though member fields cannot.

http://macdevelopertips.com/objective-c/objective-c-categories.html

link|flag
vote up 3 vote down

There is no such framework available (yet). Sorry.

link|flag
vote up -1 vote down

I work with Spring all day and I've checked Groovy. I'm by no means an XCode/Cocoa expert, but IB does only some dependency injection, which Groovy doesn't even really claims to be doing.

I reckon you are not looking for DI, but rather for a well compiled set of integrated libraries which saves you from typing a lot of code which other people also have typed. I think there are no Spring like frameworks for Cocoa because for some reason people tend to see "Open Source" as "not platform dependant" and therefore Cocoa is a bit left out in the cold.

Depending on your needs though, there are some nice free open source libraries available for Cocoa, all listed on CocoaDev in a nice list.

I know it isn't Spring, but I hope it helps.

link|flag
No, in fact, I am looking for a DI library. – Barry Wark Jan 28 at 4:32
vote up 2 vote down

You don't have to instantiate the object in the NIB file. If you set the File's Owner to your object's class and then link things in the view/window/whatever up to that, you can set your object as the owner at runtime by loading the nib file manually. That way you can have a dynamic instance of an object that still gets dependencies injected properly.

link|flag
But what about dependency injection for objects that are not the nib owner? I can instantiate them in the nib and thus use IB for dependency injection, but that's not a very scalable solution (the nib file quickly becomes unwieldy) – Barry Wark Nov 21 '08 at 21:45
You say "The Nib File", as if there was only one. You can have as many nib files as you like, which is not unwieldy at all. A nib doesn't even have to have an owner, you can put whatever objects you like in a NIB with no owner and pluck them out manually after you load the NIB file. – Kendall Helmstetter Gelner Nov 21 '08 at 21:56
I think I side-tracked the discussion a bit by mentioning IB. I'm looking for something along the lines of Spring or Groovy. – Barry Wark Jan 8 at 0:04

Your Answer

Get an OpenID
or

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