NavigationStatusPresenter
public protocol NavigationStatusPresenter : AnyObject
This protocol defines a UI Component that is capable of presenting a status message.
-
Shows a Status for a specified amount of time.
Declaration
Swift
func show(_: StatusView.Status)
-
Hides a given Status without hiding the status view.
Declaration
Swift
func hide(_: StatusView.Status)
-
Shows the status view for a specified amount of time.
showStatus()
uses a default value for priority and the title input as identifier. To use these variables, useshow(_:)
Declaration
Swift
@available(*, deprecated, message: "Add a status using show(_:﹚ instead") func showStatus(title: String, spinner spin: Bool, duration: TimeInterval, animated: Bool, interactive: Bool)