how to show seek track duration on control center

前端 未结 4 1838
无人及你
无人及你 2020-12-24 09:07

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

4条回答
  •  孤城傲影
    2020-12-24 10:00

    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";
        }
    }
    

提交回复
热议问题