Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'InitialSceneType' requires that 'StoryboardScene.UILoadingViewController' inherit from 'UIViewController' #1121

Open
gerchicov-vg opened this issue May 6, 2024 · 0 comments

Comments

@gerchicov-vg
Copy link

generated:

internal enum UILoadingViewController: StoryboardType {
    internal static let storyboardName = "UILoadingViewController"

    internal static let initialScene = InitialSceneType<UILoadingViewController>(storyboard: Self.self)
  }

expected and workable:

internal enum UILoadingViewController: StoryboardType {
    internal static let storyboardName = "UILoadingViewController"

    internal static let initialScene = InitialSceneType<ProjectName.UILoadingViewController>(storyboard: Self.self)
  }

the only difference is UILoadingViewController vs ProjectName.UILoadingViewController. How to fix it properly?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant