RoutingDelegate
public protocol RoutingDelegate
                Undocumented
- 
                  
                  
An instance observing controllers before they are presented
Declaration
Swift
var routingObserver: RoutingObserver? { get set } - 
                  
                  
Event that indicates that a view controller will be presented
Declaration
Swift
func willPresent(controller: UIViewController, routeResult: RouteResult, routingPresenter: RoutingPresenter?, wireframe: Wireframe) throwsParameters
controllerThe view controller that will be presented
routePatternThe route pattern triggering the presentation
routingOptionThe RoutingOption describing how the controller will be presented
parametersThe parameters (data) extraced from the route, or given by the sender
routingPresenterThe RoutingPresenter responsible for presenting the controller
wireframeThe wireframe presenting the view controller
 - 
                  
                  
Event that indicates that a view controller was presented
Declaration
Swift
func didPresent(controller: UIViewController, routeResult: RouteResult, routingPresenter: RoutingPresenter?, wireframe: Wireframe)Parameters
controllerThe view controller that will be presented
routePatternThe route pattern triggering the presentation
routingOptionThe RoutingOption describing how the controller will be presented
parametersThe parameters (data) extraced from the route, or given by the sender
routingPresenterThe RoutingPresenter responsible for presenting the controller
wireframeThe wireframe presenting the view controller
 
View on GitHub
        RoutingDelegate Protocol Reference