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
2009-02-18 13:01:49
A:
You can try it.
EnterNameController *newEnterNameController = [[EnterNameController alloc] initWithNibName:@"EnterNibFileName" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:newEnterNameController animated:YES];
Nahid
2009-02-24 10:16:34
A:
Get the book "Beginning iPhone Development" and go through it from start to finish without skipping anything.
bentford
2010-01-02 07:33:55
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
2010-07-30 21:48:56