RouteDescriptionListDelegate
@objc
public protocol RouteDescriptionListDelegate : AnyObjectThe delegate of a RouteDescriptionList object must adopt the RouteDescriptionListDelegate
protocol. This protocol lets the RouteDescriptionList object to inform its delegate about
updates occurred.
- 
                  
                  Tells the delegate that the specified row and route is selected. DeclarationSwift func routeDescriptionList(_ list: RouteDescriptionList, didSelect route: NMARoute, at index: Int)ParameterslistA RouteDescriptionListobject informing the delegate about the new row selection.routeThe route associated with the row. indexThe index of the newly selected row. 
- 
                  
                  Tells the delegate the route description list is about to present a route description item. A route description list sends this message to its delegate just before it presents a route description item, thereby permitting the delegate to customize the route description item object before it is displayed. This method gives the delegate a chance to override state-based properties, such as background and text colors. DeclarationSwift @objc optional func routeDescriptionList(_ list: RouteDescriptionList, willDisplay item: RouteDescriptionItem)ParameterslistThe route description list presenting the route description item. itemThe route description item to be presented. 
 View on GitHub
            View on GitHub
           RouteDescriptionListDelegate Protocol Reference
      RouteDescriptionListDelegate Protocol Reference