2011-02-28 64 views
0

你好,我試圖推入不同的nibfiles到視圖中 當你點擊它對應的uitablecell。 我不知道從哪裏開始。Uitablecell推入不同的筆尖

+2

開始閱讀一些文件?相關的類和協議:UITableView,UITableViewDelegate,UITableViewDataSource。即使內置的基於導航的應用程序模板也具有您想要的功能 - 您可以從中獲得基本的想法。 – Vladimir 2011-02-28 06:42:49

+0

這個問題類似於已經問過http://stackoverflow.com/questions/5102122/how-can-i-move-to-another-view-controller-when-the-user-clicks-on-a-row/ 5102284#5102284首先嚐試搜索然後問這裏 – Sudhanshu 2011-02-28 07:19:06

回答

2

閱讀的UITableView類和基於導航應用,看看這個代碼

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 

    //and code like this 

    if(indexPath.row==0) 
    { 
    FirstController *objFirstController=[[[FirstController alloc] initWithNibName:@"FirstView" bundle:nil] autorelease]; 
[self.navigationController pushViewController:objFirstController animated:YES]; 
    } 
else 
{ 
    SecondController *objSecondController=[[[SecondController alloc] initWithNibName:@"SecondView" bundle:nil] autorelease]; 
[self.navigationController pushViewController:objSecondController animated:YES]; 
} 
}