How do i pass the song info such as song name and track duration to control center. Player plays music fine and the play and pause control works fine though.
Playin
Not sure but may be this code help you little bit..
- (void) handle_NowPlayingItemChanged: (id) notification
{
MPMediaItem *currentItem = [musicPlayer nowPlayingItem];
NSString *titleString = [currentItem valueForProperty:MPMediaItemPropertyTitle];
if (titleString)
{
titleLabel.text = [NSString stringWithFormat:@"Title: %@",titleString];
}
else
{
titleLabel.text = @"Title: Unknown title";
}
}