耳机线控
1.引入
#import <AVFoundation/AVFoundation.h>
2.打开远程控制事件
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
if (![[AVAudioSession sharedInstance] setActive:YES error:nil]) {
NSLog(@"Failed to set up a session");
}
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
3.调用远程控制方法
- (void)remoteControlReceivedWithEvent:(UIE