When you play a music, the music title is shown below the time in the lock screen.

I have also seen how TuneIn radio does that by showing the name of the currently playing radio station.

How do you do that?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Read the documentation: MPNowPlayingInfoCenter

And here is an example code that will work on iOS 5 and it will not crash on older versions of iOS.

Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");

if (playingInfoCenter) {
    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSDictionary *songInfo = [NSDictionary dictionaryWithObjectsAndKeys:
                             @"Some artist", MPMediaItemPropertyArtist,
                             @"Some title", MPMediaItemPropertyTitle,
                             @"Some Album", MPMediaItemPropertyAlbumTitle,
                             nil];
    center.nowPlayingInfo = songInfo;
}
link|improve this answer
Thanks! Didn't it can't be done with just 1 class in iOS5. – samwize Dec 5 '11 at 16:13
There must be some way to do this without iOS5... – Eman yalpsid Jan 2 at 14:44
No there is not, since this api is only available in iOS 5. Prior to iOS there is no API to achieve this. – rckoenes Jan 3 at 7:38
If I want to show artWork also then whatshould I do???? – Khalid Usman May 24 at 13:02
@KhalidUsman you start by reading the documentation. – rckoenes May 24 at 13:05
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.