I have an app that uses a tab bar controller with 5 different tabs using one viewcontroller (UIViewController). On the primary viewcontroller there is an audio function to play audio and when I switch to other views, I am no longer able to use the headset buttons to make adjustments to audio playback (play/stop). I am told that I need to make each view act as a First Responder so it can receive the notification to adjust audio playback. How do I do this?
I am only using one UIViewController for the entire app, should I setup different view controllers for each tab of the application instead?
I'm using xCode 4.6.4 iOS SDK 6.1
Thanks.