我正在製作一個基於導航的應用程序,並且我發現我的應用程序存在缺陷。即使我有多個按鈕,每個按鈕都有自己的標題,無論按下哪個按鈕,按鈕都會將您引導到同一個屏幕。有沒有一種方法可以確保每個按鈕導致一個特定於該按鈕的頁面被按下。比如點擊選項,它會將您帶到選項菜單中,而不是點擊圖像,並將它帶到選項菜單。任何幫助,將不勝感激謝謝。 這是我的堆棧彈出方法:指定導航按鈕
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
Anotherviewcontroller *detailViewController = [[Anotherviewcontroller alloc] initWithNibName:@"Anotherviewcontroller" bundle:nil];
detailViewController.currentItem = @"Years";
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
}
請發佈在「 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {」部分的ViewController代碼中的代碼。 – 2011-03-21 09:24:20