RSDStepNavigationView
open class RSDStepNavigationView: UIView
RSDStepNavigationView
is a custom UIView
to be included in a RSDStepViewController
.
It optionally contains references to standard step navigation UI including a next button,
back button, skip button, learn more button, and cancel button.
-
Button for navigating to the next step.
Declaration
Swift
@IBOutlet open var nextButton: UIButton?
-
Button for navigating back to the previous step.
Declaration
Swift
@IBOutlet open var backButton: UIButton?
-
Button for skipping the step or task.
Declaration
Swift
@IBOutlet open var skipButton: UIButton?
-
Button for showing learn more info about the step or task.
Declaration
Swift
@IBOutlet open var learnMoreButton: UIButton?
-
Button for cancelling the task.
Declaration
Swift
@IBOutlet open var cancelButton: UIButton?
-
Should the navigation view show the back button?
Declaration
Swift
@IBInspectable open var isBackHidden: Bool = false
-
Should the navigation view show the skip button?
Declaration
Swift
@IBInspectable open var isSkipHidden: Bool = true