We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users can still use this class if they wish. However:
Drivers
Implementation:
Add the following to Typhoon assembly:
/* * Returns NO. Facade to the TyphoonComponentFactory method (which returns YES). */ @property(nonatomic, readonly) BOOL isBuilt; /** * Raises 'not built' exception. Facade to the TyphoonComponentFactory method */ - (id) componentForType:(id)classOrProtocol;
Create the following class:
@interface TyphoonAssemblyActivator @property(nonatomic, copy, readonly) NSArray *assemblies; - (instancetype) initWithAssemblies:(NSArray *)assemblies; - (void) build; @end
The build method will cause the array of non-built assemblies to be replaced with built assemblies.
The text was updated successfully, but these errors were encountered:
Reviewed. 👍 Nice work!
Sorry, something went wrong.
alexgarbarev
No branches or pull requests
Users can still use this class if they wish. However:
Drivers
Implementation:
Add the following to Typhoon assembly:
Create the following class:
The build method will cause the array of non-built assemblies to be replaced with built assemblies.
The text was updated successfully, but these errors were encountered: