最初のView Controllerでタイマーを実行しています。次に、別のView Controllerに切り替えたいのですが、タイマーはまだバックグラウンドで実行されています。
最初のView Controllerを完全にクリーンアップして、2番目のView Controllerを起動するにはどうすればよいですか。
SecondViewController *newView = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
[self presentModalViewController:newView animated:NO];
[newView release];
助けてくれてありがとう!