如何使用內建計時器停止播放音樂

如何使用內建計時器停止播放音樂_第1张图片
StopMusic
  • 方法1: 實作 remoteControlReceivedWithEvent
- (void)remoteControlReceivedWithEvent:(UIEvent *)event 
{
    if (event.subtype == UIEventSubtypeRemoteControlStop) 
    {
        // 會觸發這裡
    }
}
  • 方法2: 使用 MPRemoteCommand, 可參考 TaiwanRadio .

你可能感兴趣的:(如何使用內建計時器停止播放音樂)