I'm new to Typhoon so i can't figure this out.. I have a number of initial assemblies:
@interface ApplicationAssembly : TyphoonAssembly
@property (nonatomic,strong,readonly) ControllersAssemblyImplementation *controllersAssembly;
@end
@interface ControllersAssemblyImplementation : TyphoonAssembly <ControllersAssembly>
@property (nonatomic,strong) ServicesAssemblyImplementation *servicesAssembly;
@end
@interface ServicesAssemblyImplementation : TyphoonAssembly<ServicesAssembly>
@property (nonatomic,strong) OperationsAssemblyImplementation *operationsAssembly;
@end
All four are included in Info.plist Info.plist
But when i'm trying to access operationsAssembly inside servicesAssembly it's an instance of TyphoonCollaboratingAssemblyProxy class so i can't access it's methods. Where is my mistake?