美文网首页
如何使用內建計時器停止播放音樂

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

作者: ShinrenPan | 来源:发表于2015-11-30 14:13 被阅读23次
    StopMusic
    • 方法1: 實作 remoteControlReceivedWithEvent
    - (void)remoteControlReceivedWithEvent:(UIEvent *)event 
    {
        if (event.subtype == UIEventSubtypeRemoteControlStop) 
        {
            // 會觸發這裡
        }
    }
    
    • 方法2: 使用 MPRemoteCommand, 可參考 TaiwanRadio .

    相关文章

      网友评论

          本文标题:如何使用內建計時器停止播放音樂

          本文链接:https://www.haomeiwen.com/subject/dxdjhttx.html