I am using XCode 4.3 and I am creating a tab bar application following an example in my book (likely used for XCode version < 4.3).
By default the newly created tab-bar application includes 2 tabs. you can see my screenshot

And now I would like to add another tab (the TabExampleThirdViewControler as you also see in the image). But I don’t know how to make it the third tab. My old book says that I need to link it to the MainWindow but as you see in the image, there is no MainWindow file at all.
This sort of update from new version of XCode pretty confuses a beginner like me. Thank you for any guidance you could offer.
I am not sure what approach you are follwoing to create tabs. But look at mine. I always create tabs like this. This is very easy to implement :
Then in each of the view controllers mentioned above you need to implement
in which you can set Tab name and image.
I always follow this approach and it never fails. The tabs are always visible.