设置MPMediaItem图稿

时间:2012-06-13 20:12:30

标签: objective-c ios cocoa-touch cocoa

我知道我可以通过以下方式检索MPMediaItem的作品:

MPMediaItemCollection *collection;
/* Get media item collection here */
MPMediaItem *item = [[collection items] objectAtIndex:0];
MPMediaItemArtwork *artwork = [item valueForKey:MPMediaItemPropertyArtwork];

我想用另一个替换艺术品图像。我怎么做到这一点?

我尝试了以下但不起作用。

UIImage *newImage;
/* get image here */
MPMediaItemArtwork *artwork = [[MPMediaItemArtwork alloc] initWithImage:newImage];
[item setValue:artwork forKey:MPMediaItemPropertyArtwork];

抛出运行时异常,并显示以下消息:
this class is not key value coding-compliant for the key artwork.

1 个答案:

答案 0 :(得分:2)