PresenterProvider
public protocol PresenterProvider
                Undocumented
- 
                  
                  
Checks if a PresenterProvider can provide a presenter for a controller
Declaration
Swift
func isResponsible(routeResult: RouteResult, controller: UIViewController) -> BoolParameters
routeResultThe route result for which a presenter is searched
controllerThe controller for which a presenter should be provided
Return Value
true if it can create a controller, false otherwise
 - 
                  
                  
Creates all presenters for a specific RouteResult controller combinations
Declaration
Swift
func makePresenters(routeResult: RouteResult, controller: UIViewController) throws -> [Presenter]Parameters
routeResultThe route result for which a presenter is searched
controllerThe controller for which a presenter should be provided
Return Value
An array of presenters
 
View on GitHub
        PresenterProvider Protocol Reference