Inject dependencies with Typhoon

92 Views Asked by At

I have a very basic question about dependency injection and Typhoon.

If I have the following code:

self.router = [[MyRouter alloc] initWithNavController:self.navigationController];

How can I define that MyRouter should be initialized with self.navigationController?

My assembly:

public dynamic func router() -> AnyObject {
        return TyphoonDefinition.withClass(MyRouter.self) { (definition: TyphoonDefinition!) in
            definition.useInitializer("initWithNavController:", parameters: { (method: TyphoonMethod!) -> Void in
                method.injectParameterWith(...)
            })
        }
    }

But I don't know how to wire this dependency.

Thanks

0

There are 0 best solutions below