如何使用內建計時器停止播放音樂
2015-11-30 本文已影响23人
ShinrenPan
StopMusic
- 方法1: 實作 remoteControlReceivedWithEvent
- (void)remoteControlReceivedWithEvent:(UIEvent *)event
{
if (event.subtype == UIEventSubtypeRemoteControlStop)
{
// 會觸發這裡
}
}
- 方法2: 使用 MPRemoteCommand, 可參考 TaiwanRadio .