Question posted in Xcode Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Xcode – Storyboard 'Designated entry point not set'
Did you rename your storyboard file without updating the main interface? This could be causing your problem.
Follow these steps:
Go to the general settings section of your app(this can be navigated to through the file with the little blue blueprint Xcode logo at the top of your files list)
Go to general
Under "Deployment Info" select the dropdown menu from "Main Interface".
Select which storyboard you would like to load first after your load screen.
If this doesn’t work you could try what Diego said again and if that doesn’t work then you might have to just rebuild it in a new Xcode project(hopefully it doesn’t come down to that). I hope this was helpful!
3
Answers
You need to set an initial view controller.
1.- Select the Main.storyboard and your first view controller (Navigation Controller, login, etc.)
2.- Open Attributes inspector and click "Is Initial View Controller" in the View Controller section.
3.- You will see an indicator on the left of the VC.
You need to do the first answer and add this line to your AppDelegate.
Make sure you have your project like this. This need to work
Did you rename your storyboard file without updating the main interface? This could be causing your problem.
Follow these steps:
See this image
If this doesn’t work you could try what Diego said again and if that doesn’t work then you might have to just rebuild it in a new Xcode project(hopefully it doesn’t come down to that). I hope this was helpful!