views:

150

answers:

3

Still getting familiar with the limits of MonoTouch. Is there an IoC/DI library that can be used with MonoTouch. Something like Ninject ideally?

+4  A: 

Give TinyIoC a try - http://www.grumpydev.com/2010/03/02/announcing-tinyioc-an-easy-to-use-hassle-free-inversion-of-control-container/

Cheers,

ChrisNTR

chrisntr
Looks promising based on the description. I just need something lightweight anyways. Will give it a try tonight.
hambonious
I've just started using this and it's great :)
cvista
+1  A: 

I went through this evaluation process, and I found that Funq was a nice clean implementation that gave me enough power to do what I wanted without over complicating things (or dragging is massive dependencies). It's nice and clean, and supports lazy object initialization through lambda expressions.

I evaluated 5 or 6 different containers specifically for use with MonoTouch.

http://funq.codeplex.com/

Adam
A: 

The OpenNETCF IoC container now supports MonoTouch as well.

ctacke