Hi Nitrex88! Thanks so much for your reply. I will definitely check out your other tutorials that work with the beta 5 release. Also, I could not figure out how to comment on your tutorial..which is why I used the forum. Sorry about that.
Also, this might already be common knowledge, but if there are any beginners out there, I found that if you don't want to use the MainWindow.xib file (and want to use one called "DifferentView.xib" for example), you can specify it in the appdelegate.m like so:
#import "YourAppDelegate.h"
#import "Controller.h"
@implementation YourAppDelegate
@synthesize window;
@synthesize YourController;
- (void)applicationDidFinishLaunching

UIApplication *)application {
//Specify the nib file to use
Controller *aController = [[Controller alloc] initWithNibName:@"DifferentView" bundle:[NSBundle mainBundle]];
self.YourController = aController;
[aViewController release];
UIView *controllersView = [YourController view]; //get view from view controller
[window addSubview:controllersView];
}
And make SURE that the View you create in Interface Builder is connected to the File Owner object. I spent awhile digging through everything before I realized my view wasn't connected to the right NIB. (yea, i'm sure you can tell that i'm new to this stuff.)