2011-12-13 59 views
0

我面臨的導航不同的問題,我有三個視圖控制器,bookselectionview,chapterselectionview和verseselectionview的bookselectionview包含聖經的書,如果我們挖掘起源它定位到發生chapterpage 如果章從視圖中選擇它導航到包括章節的經文視圖,我有關閉按鈕在章節視圖和經文視圖,如果用戶點擊經文關閉按鈕,它想彈出核心chpterview,就像導航欄中的後退按鈕,但我創建了自定義按鈕,我的問題是當我點擊後面的按鈕它水芹應用程序。這是我的代碼 在ch視圖的viewwillapper導航懷疑在iPhone SDK的

[button addT arget:self action:@selector(ButtonClicked :) forControlEvents:UIControlEventTouchUpInside];

-(void)ButtonClicked:(UIButton *)sender{ 
     VersusSelectionView *detailViewController = [[VersusSelectionView alloc] initWithNibName:@"VersusSelectionView" bundle:nil]; 

    //detailViewController.firstString = firstString; 
    // ... 
    // Pass the selected object to the new view controller. 
    detailViewController.selectedChapter=[sender.titleLabel.text intValue]; 
    appDelegate.selectedChapterIndex=[sender.titleLabel.text intValue]; 
    self.hidesBottomBarWhenPushed=YES; 
    [self.navigationController pushViewController:detailViewController animated:YES]; 

    [detailViewController release]; 
} 

上面的代碼導航t時的詩句頁面 在versepage viewWillAppear中

[button addTarget:self action:@selector(ButtonClicked:) forControlEvents:UIControlEventTouchUpInside]; 

在verseselectionview closebuttonclick

-(IBAction)_clcikbtnclosetochptervew:(id)sender 
{ 
[self.navigationController popViewControllerAnimated:YES]; 
} 

攻近時奔它彈出chpterview和崩潰的應用程序。 我的代碼中有任何錯誤?請幫我做這個。謝謝。

+0

請在提問有關應用程序崩潰的問題時提供崩潰日誌。 – jrturton

+0

@jrturton主我的應用程序崩潰「節目的接收信號‘EXC_BAD_ACCESS’在調試器窗口 – ICoder

+0

類型'bt'得到回溯,這會告訴你什麼是在遇到錯誤時發生的事情。 – jrturton

回答

2

檢查 - (空)dealloc的VersusSelectionView類的方法。

+0

偉大的人,問題是在DEA lloc method.thnks非常多 – ICoder