I am new to Xcode and have tried to run a simple app (i can give code if needed) with the emualtor, and an although it says ‘Build Successful’, a Target Output says “Application Windows are Expected to have a Root View Controller at the end of Application Launch”
Is there a fix you could tell me please? Again this is the first time I’ve used Xcode so sorry if it’s a simple mistake 🙂
Thanks a lot x
In you Application Delegate class in the
- (void)applicationDidFinishLaunching:(UIApplication *)applicationmethod you need to set a root view controller to your window like this :The message should disappear after that.