StartingPoint

public enum StartingPoint

A starting point in the UIViewControllers stack

  • topMost: Start from the topmost UIViewController
  • root: Start from the UIWindows root UIViewController
  • custom: Start from the custom UIViewController
  • Start from the topmost UIViewController

    Declaration

    Swift

    case topmost
  • Start from the UIWindows root UIViewController

    Declaration

    Swift

    case root
  • Start from the custom UIViewController

    Declaration

    Swift

    case custom(@autoclosure () throws -> UIViewController?)