user879702
user879702

Reputation: 211

IOS - Pause and Unpause Currently Playing Music

I am working on a IOS app that I want to have the functionality to pause and unpause music that is currently playing through the ipod, just like the ipod's play/pause button. Is there anyway to do that through IOS? The only answers I have found for this is for dealing with songs and sounds played locally through the app.

Any help would be fantastic. Thanks so much!

Upvotes: 2

Views: 1577

Answers (1)

Ole Begemann
Ole Begemann

Reputation: 135578

[[MPMusicPlayerController systemMusicPlayer] play];
[[MPMusicPlayerController systemMusicPlayer] pause];

Upvotes: 7

Related Questions