Please help!
I have been trying all day to simply move to another view once a button is pressed. I don't want a navigation or tool bar on my app.
I am completely lost as how to sort this. Every example and written text shows navigation stacks and such, but none of them have worked when implementing it to my test app.
In simple: I have a single view that has a button on it. This button is linked to an action. When this action is started, it runs a 'pushViewController' script.
Nothing happens.
Although this seems simple to some and ridiculous to others, it is one of two or three different methods i have tried.
Is it that this is the the wrong way to go about it when not using navigation/tool bars?
Where can i find the help i need. I find the Apple documentation never answers the questions i ask. After a day trying to sort this SIMPLE task, it is wearing me thin.
I have been trying all day to simply move to another view once a button is pressed. I don't want a navigation or tool bar on my app.
I am completely lost as how to sort this. Every example and written text shows navigation stacks and such, but none of them have worked when implementing it to my test app.
In simple: I have a single view that has a button on it. This button is linked to an action. When this action is started, it runs a 'pushViewController' script.
Code:
RedView *redView2 = [[RedView alloc] initWithNibName:@"RedView" bundle:nil];
[self.navigationController pushViewController:redView2 animated:YES];
[redView2 release];
Nothing happens.
Although this seems simple to some and ridiculous to others, it is one of two or three different methods i have tried.
Is it that this is the the wrong way to go about it when not using navigation/tool bars?
Where can i find the help i need. I find the Apple documentation never answers the questions i ask. After a day trying to sort this SIMPLE task, it is wearing me thin.