Here's what I've done so far:
I've created an application with XCode that is a UITabBar application. I was able to get three custom views created, get them all wired up to each tab bar button and it switches magically between views as I touch each tab button.
Hooray.
My problem is now that I need to create a view that contains a simple UITableView which can be displayed inside a view. The view itself is a UIViewController object (although examples I've seen have based this on "UIViewController <UITableViewDelgate>").
Seeing as my grasp on the iPhone SDK is still rusty at best, I was wondering if anyone could provide me with a set of example code that shows how to set up a view to display a UITableView object pre-populated with "Item 1" through "Item 10"? All I want is to show this in a UIViewController object, so it can be displayed when I click the correct tab button at the bottom of the display.
I should be able to figure out the UINavigation stuff, but so far it's been hit (display blank bar) or miss (crash entire application.)
It would be nice to set up the wiring using the IB, but from all accounts I've been reading online, this is near impossible.
Short of setting up a new application as a UITableView application, is there any "easy" or "simple" way to do what I want? Just a table view in a view that is controlled by a UITabBar. I would think it wouldn't be that hard but so far - I've had crash after crash after crash.
It's quite a hair-pulling experience!
I appreciate any help anyone can provide!!