GameController *c = [[GameController alloc] initWithNibName:@"GameController" bundle:nil];
[self presentModalViewController:c animated:YES];
[c release];
For a navigatable version with back functionality:
[self.navigationController pushViewController:c animated:YES];
No comments:
Post a Comment