`guide(to:)` should not return nil?
daichiro opened this issue · 2 comments
daichiro commented
example:
class ViewController: UIViewController, ActionScene, SceneLinkage {
func guide(to destination: ViewController.Destination) -> SceneTransition<DestinationType.StageType>? {
return nil // Crash!
}
...
guide
should return non-optional value?
crexista commented
Yes, I think so that.
I will change it to what you say.