I want to instantiate the root view controller of a Storyboard I created.
To do so I was used to calling -instantiateInitialViewController() from a storyboard.
The thing is since iOS13 there’s a new method signature that takes a new optional argument: (creator: ((NSCoder)->ViewController?)?)
The annoying thing is that Xcode thinks I want to use that new API, which makes my app incompatible with older OS.
And I can’t get around it, even with a version check.
My question is: How to tell the compiler to use the method signature without the parameter?


