2012-05-19 163 views
0

我希望能夠在視圖之間切換。 我一直在寫一些代碼,但它不工作?Xcode:在視圖之間切換

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; 
{ 
    AlleRumViewController *allerum = [[AlleRumViewController alloc] initWithNibName:nil bundle:nil]; 

    if ([[tableData objectAtIndex:indexPath.row] isEqual:@"Alle rum"]) {  
     [self presentModalViewController:allerum animated:YES]; 
    } 
} 

你們有沒有人知道我可以如何切換?

回答

0
- (IBAction)goButtonPressed:(UIButton*) source { 
YourNewViewController* someNameController = [[YourNewViewController alloc] init]; 
[self.navigationController pushViewController:someNameController animated:YES]; 
[someNameController release]; 
} 
+0

當然,在TableViewController的情況下,您可以將此代碼寫入didSelectRowAtIndexPath方法。 – Denes

+0

是否有效?它有幫助嗎? – Denes