Hi
I'm struggling to get started with multi screen StoryBoards which don't use a navigation controller. The reason i want to do this is because my app is a single screen app except for the 1st time the app fires - it goes through a setup wizard type thing:
1st load:
startup -> screen 1 -> screen 2 -> screen 3 -> main app screen
from then on:
startup -> main app screen
When ever I load a single screen app into a storyboard I get one viewcontroller. I can add outlets to it as when I go into the half designer / half code view and ctrl/click a button I get the StoryBoard1ViewController interface definition and it allows me to add outlets. However - when I add another viewcontroller to the storyboard I get UIViewController.h which means I can't add outlets? Should I be setting the class for all the new viewcontrollers to StoryBoard1ViewController? As it then allows me to add outlets.
Are there any good tutorials that don't show the simple happy path of using a navigationcontroller?