views:

346

answers:

4

hey, i am new at the area of objective c. i am building an iphone app by using xcode . i have taken two button on a page and from among one i would like to go to another page how is it possible at xcode?

A: 

This type of thing is a basic building block of iPhone apps, and Apple provides plenty of sample code that shows how to do it.

Start by looking at the UICatalog sample project.

August
A: 

You can try it.

EnterNameController *newEnterNameController = [[EnterNameController alloc] initWithNibName:@"EnterNibFileName" bundle:[NSBundle mainBundle]];
    [[self navigationController] pushViewController:newEnterNameController animated:YES];
Nahid
A: 

Get the book "Beginning iPhone Development" and go through it from start to finish without skipping anything.

bentford
A: 

I can't stand XCode.... I've been using it now for a month and getting nothing in return. I'm spoiled. Seriously I wonder if any iPhone developers out there have used Visual Studio before. OMG

Damon