I'm building an iPhone app that loads 5 items on a TabBarController.
When the app loads the first view is an audio player (an instance of MyAudioPlayerViewController)
Suppose the user starts to play a song on MyAudioPlayerViewController and then decides to tap on the second Tab Bar Item, which has 6 options on a UITableView to choose from. The user makes a selection, that leads to another UITableView (with some other options to choose from), then they make another selection, leading to a final ViewController, that is an audio player as well.
I need this final UIViewController to be the SAME as the first one that had the inicial song playing and NOT a new instance of MyAudioPlayerViewController.
Why do I need this configuration? I need it because in the very moment that the user makes his final selection on the previous UITableView the song that is playing MUST STOP.
This final view having the MyAudioPlayerViewController must be able the access my custom NSObject class that is playing the audio, making it stop the current song.
Right now I have this code that is invoking MyAudioPlayerViewController that shows the final UIViewController:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
MyAudioPlayerViewController * myAudioPlayerViewController = [[MyAudioPlayerViewController alloc] initWithNibName:@"MyAudioPlayerViewController" bundle:nil];
[self.navigationController pushViewController:myAudioPlayerViewController animated:YES];
[myAudioPlayerViewController changeText:[arraySingerList objectAtIndex:indexPath.row] withSong:[arraySongList objectAtIndex:indexPath.row]];
[myAudioPlayerViewController release];
}
As you can see it makes a new instance of MyAudioPlayerViewController, that has nothing to do with the very first one when app launched, then I'm able to invoke the method on my custom NSObject class (the player itself) responsible to stop the previous audio that is playing because it is protected.
Is there any solution for this case or should I build everything again using another approach?
Thanks!