Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ```swift
  2. let productScreen = StepAssembly(finder: ProductViewControllerFinder(), factory: ProductViewControllerFactory())
  3. .adding(LoginInterceptor<UUID>())
  4. .adding(ProductViewControllerContextTask())
  5. .adding(ProductViewControllerPostTask(analyticsManager: AnalyticsManager.sharedInstance))
  6. .using(UINavigationController.push())
  7. .from(NavigationControllerStep())
  8. .using(GeneralActions.presentModally())
  9. .from(GeneralStep.current())
  10. .assemble()
  11. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement