I have a class within my AppDelegate.m file called PAEAudioHost which I am using to play audio, and I want to stop the audio file using a UIButton in my Detail:Controller.m file.
To stop and start the audio file you use the public member functions:
void (start) void (stop) I have tried the following code in the detail controller:
P11AppDelegate* app =[[UIApplication sharedApplication] delegate]; [app.host stop] This produces an error stating: "Property 'host' not found on object of type 'DetailController *'"
Any ideas how I can achieve this?