iOS: Main.storyboard references the initial view controller

interface-builder, ios, uistoryboard, xcode

Solution

This is a storyboard reference, pointing to another storyboard named `newStoryBoard`. For the segue to work, it needs to know which view controller it should open from that storyboard.

Open `newStoryBoard.storyboard`, select the appropriate view controller, and check the Is Initial View Controller box in the properties panel on the right:

Alternatively, you can set the Referenced Id in the storyboard reference properties. Set it to the storyboard Id of the view controller you want to open, and you should be all set.

Problem

I'm adding a new storyboard reference: But I'm getting this error: ``` error: Main.storyboard references the initial view controller of newStoryBoard.storyboard, but no designated entry point was found. ``` any of you knows why I'm getting this error? I'll really appreciated your help.

Original source