You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my application I have 3 assemblies i want to register TyphoonDefinition(s) with the
+(void)factoryWithAssemblies:(NSArray *)assemblies
method of TyphoonBlockComponentFactory class.
In version 2.3.X of Typhoon this method takes about 25% more time than the same method in version 2.1.5 .
Is this normal (I need to speed up my app launching and Typhoon doesn't help me at this point).
The text was updated successfully, but these errors were encountered:
Yes, I think it's because new autoInjection feature (It hasn't documentation yet).
Currently we haven't API to disable it.
Try to comment out this line:
Pushed the fix.
Try to pull :head version and add following key into your Info.plist file: TyphoonAutoInjectionEnabled (BOOL) - NO
It will disable autoIinjection feature globaly
In my application I have 3 assemblies i want to register TyphoonDefinition(s) with the
+(void)factoryWithAssemblies:(NSArray *)assemblies
method of TyphoonBlockComponentFactory class.
In version 2.3.X of Typhoon this method takes about 25% more time than the same method in version 2.1.5 .
Is this normal (I need to speed up my app launching and Typhoon doesn't help me at this point).
The text was updated successfully, but these errors were encountered: