當我導航到不同視圖超過10到11次時,我的應用程序崩潰。我的意思是我在主屏幕上有6個按鈕,這些按鈕可以讓您看到不同的視圖。當我反覆按下這些按鈕時,我的應用程序崩潰。我花了3天,但沒有解決方案。這裏是應用程序崩潰的代碼由於導航到不同視圖導致應用程序崩潰
當我取消註釋發佈聲明然後第一次崩潰。
-(IBAction) goToLiveAlerts{
teamAlerts *showLiveAlerts=[[teamAlerts alloc] initWithNibName:@"teamAlerts" bundle:nil];
[self.navigationController pushViewController:showLiveAlerts animated:YES];
//[showLiveAlerts release];
}
當我去掉,然後我控制檯錯誤是 「wait_fences:未能接收應答:10004003 [切換處理2093] [切換處理2093] 程序接收到的信號:‘EXC_BAD_ACCESS’。」 - (IBAction)goToPhotos { picturesGallery * showPictures = [[picturesGallery alloc] initWithNibName:@「picturesGallery」bundle:nil]; [self.navigationController pushViewController:showPictures animated:YES]; // [showPictures release]; }
請提供代碼和崩潰回溯。我們不是心靈感應。 – Eimantas
你有沒有簡介你的應用程序,看看是不是重點分配的意見? – nhahtdh
如何釋放不重點的視圖。請舉例說明。它會幫助我理解 –