i create project with storyboard base uitabbarcontroller,
i try to add splash view that will show until server request will finsih,
so i create a new view controller class called “SplashViewControler” with xib file
and i try to add as subview to windows object.
the SplashViewControler not show…
any ideas how to Implement splash view with storyboard ?
thanks
I’d add that SplashViewControler to your story board. Then, using the story board designer, make the SplashViewControler the initial scene by checking off the “Is Initial View Controller” property of your SplashViewControler. Then, create a segue from your SplashViewControler to whatever your next view controller is. Make sure you name that segue. Then, when your server process is complete, fire that segue manually:
I may be wrong but I think the HIG talks about not doing splash screens this way. You also need to consider how you will handle a server timeout or error from the server…