The following is the code that works just find to get the audio to stream:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:stringURL]];
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
connectionPlay = [[NSURLConnection alloc] initWithRequest:request delegate:self];
NSError *playerError;
player = [[AVAudioPlayer alloc] initWithData:streamData error:&playerError];
player.numberOfLoops = 0;
player.volume = 1.0f;
[player prepareToPlay];
if (playerError) {
NSLog(@"audio player error: %@", [playerError localizedDescription]);
}
if (player == nil)
NSLog(@"%@", [playerError description]);
else
[player play];
When I attempt to take the app into background mode, i seizes to play. I have gone into the .plist and have entered Required background modes, item 0, App plays Audio. This did not fix my problem.
I began placing this:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback
error:nil];
[[AVAudioSession sharedInstance] setActive:YES
error:nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
Inside of
- (void)applicationWillResignActive:(UIApplication *)application
- (void)applicationDidEnterBackground:(UIApplication *)application
and
inside of the viewDidLoad in the main ViewController. As well as right after [player prepareToPlay].
I am not sure if the issue is with me not setting the proper background settings or with the app cutting out the connection. Basically, I am not sure what I am missing.
I have been looking at:
and
EDIT: anyone?