I got a timer running on my first view controller, then i want to switch to the other view controller and the timer is still running in the background.
How can i whole clean up the first view controller and launch the second view controller.
SecondViewController *newView = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
[self presentModalViewController:newView animated:NO];
[newView release];
Thanks for any help!