Restart playing sound when interrupted by phone calls
This commit is contained in:
parent
1edc29c6fb
commit
b2ec730c88
@ -143,18 +143,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle audio session interruption.
|
* Restart playing sound when interrupted by phone calls.
|
||||||
*/
|
*/
|
||||||
- (void) handleAudioSessionInterruption:(NSNotification*)notification {
|
- (void) handleAudioSessionInterruption:(NSNotification*)notification {
|
||||||
NSNumber* receivedType = [notification.userInfo
|
[self keepAwake];
|
||||||
valueForKey:AVAudioSessionInterruptionTypeKey];
|
|
||||||
|
|
||||||
NSNumber* expectedType = [NSNumber numberWithInt:AVAudioSessionInterruptionTypeEnded];
|
|
||||||
|
|
||||||
if ([receivedType isEqualToNumber:expectedType]) {
|
|
||||||
[self configureAudioSession];
|
|
||||||
[self keepAwake];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
Loading…
Reference in New Issue
Block a user