You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a storyboard does not have any IDs for it's scenes you cannot use the initialViewController method from StoryboardScene because the enum doesn't extend it.
I've toyed around with manually trying to get it to work and have been unsuccessful. Because of the RawRepresentable requirement on the StoryboardScene protocol you can't have this enum use it since there are no cases.
The text was updated successfully, but these errors were encountered:
Maybe we can provide the func storyboard() and func initialViewController() default implementations in an unbound extension StoryboardScene, and use the extension StoryboardScene where Self.RawValue == String only for func viewController() and static func viewController()?
When a storyboard does not have any IDs for it's scenes you cannot use the
initialViewController
method fromStoryboardScene
because the enum doesn't extend it.It generates code like:
I've toyed around with manually trying to get it to work and have been unsuccessful. Because of the
RawRepresentable
requirement on theStoryboardScene
protocol you can't have this enum use it since there are no cases.The text was updated successfully, but these errors were encountered: