当我尝试使用MP Media项目元数据获取歌曲的歌词时,媒体项属性歌词和媒体项属性断言url返回nil和无效响应。
答案 0 :(得分:2)
这对我有用(来自这篇文章iPhone song lyrics access)
NSURL* songURL = [mediaItem valueForProperty:MPMediaItemPropertyAssetURL];
AVAsset* songAsset = [AVURLAsset URLAssetWithURL:songURL options:nil];
NSString* lyrics = [songAsset lyrics];