RSDOptionalStepViewControllerDelegate
public protocol RSDOptionalStepViewControllerDelegate : class, NSObjectProtocol
RSDOptionalStepViewControllerDelegate
is a delegate protocol defined as @objc
to allow the
methods to be optionally implemented. As such, these methods cannot take Swift protocols as their
paramenters.
-
Called when the view is about to made visible.
Declaration
Swift
func stepViewController(_ stepViewController: UIViewController, willAppear animated: Bool)
-
Called when the view has been fully transitioned onto the screen.
Declaration
Swift
func stepViewController(_ stepViewController: UIViewController, didAppear animated: Bool)
-
Called when the view is dismissed, covered, or otherwise hidden.
Declaration
Swift
func stepViewController(_ stepViewController: UIViewController, willDisappear animated: Bool)
-
Called after the view was dismissed, covered, or otherwise hidden.
Declaration
Swift
func stepViewController(_ stepViewController: UIViewController, didDisappear animated: Bool)