Finders
-
A default implementation of the view controllers finder that searches for a view controller by its name.
See moreDeclaration
Swift
@MainActor public struct ClassFinder<VC, C> : StackIteratingFinder where VC : UIViewController -
Dummy struct used to represent that nothing should be found in a view controller stack and a
UIViewControllershould always be created from scratch. Its only purpose is to provide type safety checks forStepAssembly.For example,
See moreUIViewControllerof this step was already loaded and integrated into a stack by a storyboard. -
A default implementation of the finder, that searches for a
UIHostingControllerwith a specificViewand itsContextinstance.The
See moreViewshould conform to theContextCheckingto be used with this finder.Declaration
Swift
@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) @MainActor public struct UIHostingControllerWithContextFinder<ContentView> : StackIteratingFinder where ContentView : ContextChecking, ContentView : View
Finders Reference