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