Thanks for the input. I started over on the app and now I have my Navigation controller issues taken care of. The app looks much better. Now I have come to an issue that led me to all of this in the first place. It seems as though certain code that I try to do can only be executed properly when I build the view in a new XIB file. I know all about classes, defining actions and coding them in the .h and .m files, so I know the code is going to the right place.
I'm trying to do a scrolling table view in one of my View Controllers on the storyboard. I've tried using a View Controller with a table view inside of it, as well as a straight-up Table View Controller. Neither of the methods I have tried worked properly. The basic template works fine, but the minute I try to do any coding with it I get shut out. I watched several YouTube tutorials, and both of the methods I have tried threw up errors and crashed the app on that View Controller.
I had similar problems creating a scroll view. This is what let me to make my views in XIBs originally, as it seems the code works just fine with that method. But then I run into the problem of navigating from the XIB to a Storyboard, which is the topic of this thread. I cannot embed a Navigation Controller in the XIB and have it work properly in relation to the storyboard, so that throws up more problems (which is why I was making my own Back button in the original post).
Most of these tutorials involve one or two View Controllers, and they're simple tutorials. Are there just some things you can only do from XIBs? Table Views, UIScrollView, nothing but problems. Everything else I do works fine, mainly just pushing views and redirecting to Safari, but still. If I can do everything in a Storyboard View Controller that I can do in a XIB view, it would make it a lot easier, but that doesn't seem to be the case. Am I wrong?
I guess the short way of saying this, is
1) Can I execute the same code in a Storyboard View Controller as I can in a XIB? Why do some things I try only seem to work if I have a separate XIB to design the view? (ex. UITableViewController UITableView)
2) Is it possible to work with XIBs and Storyboards seamlessly? I had trouble using a Navigation Controller in the XIB while also using one on the Storyboard. Is there a correct way to do this?