DeeplinkExecutor
public class DeeplinkExecutor
The DeeplinkExecutor is responsibile for executing the deeplink. seeAlso Deeplink.
-
Create an instance of DeeplinkExecutor.
Declaration
Swift
public init() -
Check if the deeplink can be executed.
Declaration
Swift
public func canExecuteLink(_ deeplink: Deeplink) -> BoolReturn Value
True if can be executed.
-
Execute the deeplink. The completion block will be called, with nil parameter if it is successful.
Declaration
Swift
public func executeLink(_ deeplink: Deeplink, completion: ((DeeplinkProcessingResult?) -> Void)? = nil)Parameters
deeplinkThe deeplink.
completionThe completion block.
DeeplinkExecutor Class Reference