2011-05-03 69 views
0

我添加了這個方法didSelectRowAtIndexPath轉到下一個視圖 沒有錯誤,但我無法進入下一個視圖。用didSelectRowAtIndexPath推下一個視圖

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 
    detailhadith *detaihd = [[detailhadith alloc] initWithNibName:@"detailhadith" bundle:nil]; 
    [self.navigationController pushViewController:detaihd animated:YES]; 
    [detaihd release]; 
} 
+1

你有導航控制器嗎? – 2011-05-03 14:52:17

回答

0

你可以只添加一個子視圖這樣的:[self.view addSubview:nextView.view];,如果你沒有一個navigationController。

相關問題