Hello all. I am in the process of creating my first iPhone Application and I could use some help. I'm a beginner, so don't assume I know anything! 
I'd like to use a button to change windows
I used this tutorial: http://www.servin.com/iphone/iPhone-Buttons.html but I would like to change the window rather than the background color.
- (IBAction) doBlueButton {
window.backgroundColor = [UIColor blueColor];
}
Now instead of "window.backgroundColor = [UIColor blueColor];" I need to change that line so that when the button is clicked, it changes the window.
I'd like to use a button to change windows
I used this tutorial: http://www.servin.com/iphone/iPhone-Buttons.html but I would like to change the window rather than the background color.
- (IBAction) doBlueButton {
window.backgroundColor = [UIColor blueColor];
}
Now instead of "window.backgroundColor = [UIColor blueColor];" I need to change that line so that when the button is clicked, it changes the window.