getting this error message any help here?

warning: Unsupported Configuration: Scene is unreachable due to lack of entry points and does not have an identifier for runtime access via -instantiateViewControllerWithIdentifier:

It's fairly clear. Your storyboard has a scene (created by dragging a view controller onto the IB canvas some time in the past) which doesn't have any relationships (segues, containment, etc) with any other scene, nor is it marked as your storyboard's initial scene.


It also has no identifier, so it can't be instantiated in code.


In other words, the scene is "unreachable" — can never be used.


If this is just some placeholder where you're keeping an unused piece of the UI, you don't have to do anything. Otherwise you need to figure out what the scene is supposed to be connected to.

getting this error message any help here?
 
 
Q