CompleteFactoryAssembly

public final class CompleteFactoryAssembly<FC> where FC : ContainerFactory

Builds a ContainerFactory fulfilled with the children UIViewController factories.

let rootFactory = CompleteFactoryAssembly(factory: TabBarFactory())
        .with(XibFactory<HomeViewController, Any?>, using: UITabBarController.add())
        .with(XibFactory<AccountViewController, Any?>, using: UITabBarController.add())
        .assemble()

NB: Order matters here

Methods