I'm back with another question. (Of course I am.. haha) I'm in the middle of a tutorial (iTennis) and insted of the splash view I want to load a xib that will let me load different difficulties. I have the xib load correctly and have all of the buttons hooked and everything correctly. I'm just wondering how would I implement when they tap the button they will load the correct view controller?
Heres what I have for the first view that comes up:
I was looking it up in the Apple documentation and from what I see there isn't anything I can use or find helpful. I cant load from multiple xibs because I have one xib layout for multiple viewcontrollers. Any help is great 
Heres what I have for the first view that comes up:
Code:
@interface SplashViewController : UIViewController {
IBOutlet UIButton *easy;
IBOutlet UIButton *medium;
IBOutlet UIButton *hard;
IBOutlet UIButton *cantBeat;
}
@property (nonatomic, retain) IBOutlet UIButton *easy;
@property (nonatomic, retain) IBOutlet UIButton *medium;
@property (nonatomic, retain) IBOutlet UIButton *hard;
@property (nonatomic, retain) IBOutlet UIButton *cantBeat;
-(IBAction)easyClicked;
-(IBAction)mediumClicked;
-(IBAction)hardClicked;
-(IBAction)cantBeatClicked;
@end
Code:
@implementation SplashViewController
@synthesize easy,medium,hard,cantBeat;
-(IBAction)easyClicked {
}
-(IBAction)mediumClicked{
}
-(IBAction)hardClicked{
}
-(IBAction)cantBeatClicked{
}
//more code..