I know how to set up my iOS application to make it playing audio in background (= when another application is used on the iOS device) using the plist.
Some applicati
In your AppDeletate:
- (void)applicationDidEnterBackground:(UIApplication *)application { [[YouPlayerClass sharedInstance] stop]; }
Thus The audio stops at app entering background.