I am creating a new UIViewController with the below code
GameViewController *temp = [[GameViewController alloc] initWithNibName:@\"GameViewController\" bundle:ni
In GameViewController have you released your background music as
- (void)viewDidLoad{ //Other nils self.backgroundMusic = nil; } - (void)dealloc{ //Other releases [backgroundMusic release]; [super dealloc]; }