Using Swift I got the error that my "TableViewController" is unreachable because it has no entry points and no runtime access via [UIStoryboard instantiateViewControllerWithIdentifier].
In my View Controller class there is the suggestion to fix it while changing instantiateViewController(withIdentfier...)
in instantiateViewController(withIdentifier)
.
Shall I do this or how do I fix this?
Just add an ID in Storyboard ID (and restoration ID in case)
This is my error.
I delete the code in ViewController , but I don't disconnect the connect in ViewController of Main.storyborad.
I had the same problem. I figured out that I had forgotten to add an "ID" to my Tab Bar Controller. Hope this help somebody.
I'd reached the same error. This answer would be useful, I think: Xcode: "Scene is unreachable due to lack of entry points" but can't find it
The problem was that because of some experiments and copy-pasting I had an actual copy of a view controller located outside the visible part of the screen or it could be stacked exactly on top of its twin. So I just deleted unwanted one :-) You should open Document Outline and сheck for copies :-)
In my case I accidentally deleted Storyboard Entry Point without knowing, and app wasn't starting,
After several undo's, I saw the problem and corrected it