- (void)handleInterruption:(NSNotification *)noti
{
AVAudioSessionInterruptionType type = [noti.userInfo[AVAudioSessionInterruptionTypeKey] intValue];
if (AVAudioSessionInterruptionTypeBegan == type) {
_appIsInterrupt = YES;
[_livePush pausePush];
NSLog(@"AVAudioSessionInterruptionTypeBegan");
}
if (AVAudioSessionI