
StopMusic
- 方法1: 實(shí)作 remoteControlReceivedWithEvent
- (void)remoteControlReceivedWithEvent:(UIEvent *)event
{
if (event.subtype == UIEventSubtypeRemoteControlStop)
{
// 會(huì)觸發(fā)這裡
}
}
- 方法2: 使用 MPRemoteCommand, 可參考 TaiwanRadio .